@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');


:root {
  --primary: #2d6a4f;
  --primary-light: #52b788;
  --primary-dark: #1b4332;
  --accent: #c9a84c;
  --accent-light: #e9c46a;
  --cream: #faf7f2;
  --white: #ffffff;
  --dark: #1a1a1a;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.16);
  --radius: 16px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html { scroll-behavior: smooth; font-size: 16px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
}

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


img.lazy-photo {
  opacity: 0.92;
  transition: opacity 0.45s ease;
}
img.lazy-photo.is-loaded {
  opacity: 1;
}
img.lazy-photo.is-error {
  opacity: 1;
  object-fit: contain;
  padding: 12px;
  background: var(--light-gray);
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }


::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }


#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 20px 0;
  transition: var(--transition);
}

#header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: var(--transition);
}

.logo:hover .logo-icon { transform: rotate(-5deg) scale(1.05); }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.logo-tagline {
  font-size: 10px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
}

#header.scrolled .logo-name { color: var(--primary-dark); }
#header.scrolled .logo-tagline { color: var(--gray); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.3px;
  position: relative;
  transition: var(--transition);
}

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

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

#header.scrolled .nav-links a { color: var(--dark); }
#header.scrolled .nav-links a:hover { color: var(--primary); }

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-light)) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(201,168,76,0.35);
  transition: var(--transition) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.45) !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

#header.scrolled .hamburger span { background: var(--dark); }


.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--primary-dark);
  overflow: hidden;
}


.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: translateZ(0);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(27,67,50,0.72) 0%,
    rgba(45,106,79,0.55) 40%,
    rgba(27,67,50,0.65) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  animation: heroFadeIn 1.2s ease-out forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 9vw, 110px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 8px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-title span {
  display: block;
  font-style: italic;
  color: var(--accent-light);
}

.hero-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255,255,255,0.88);
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 44px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201,168,76,0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg { color: rgba(255,255,255,0.6); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


.stats-bar {
  background: var(--primary-dark);
  padding: 28px 0;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  margin-top: 4px;
  text-transform: uppercase;
}


.section {
  padding: 100px 0;
}

.section-alt { background: var(--white); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(82,183,136,0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(82,183,136,0.25);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title span { color: var(--primary-light); font-style: italic; }

.section-desc {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}


.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-hover);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--primary-dark);
  color: var(--white);
  padding: 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(27,67,50,0.35);
}

.about-badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}

.about-badge-text {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.about-content {}

.about-content .section-tag { text-align: left; }

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-title span { color: var(--primary-light); font-style: italic; }

.about-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(45,106,79,0.1), rgba(82,183,136,0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
}


.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image { transform: scale(1.08); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,67,50,0.7), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.product-card:hover .product-overlay { opacity: 1; }

.product-overlay-text {
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.product-info {
  padding: 20px;
}

.product-tag {
  display: inline-block;
  background: rgba(82,183,136,0.12);
  color: var(--primary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
}


.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.app-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.app-card:first-child,
.app-card:nth-child(5) {
  grid-column: span 2;
  height: 360px;
}

.app-image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.app-card:hover .app-image { transform: scale(1.06); }

.app-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,67,50,0.85) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.app-icon {
  font-size: 28px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.app-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.app-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  line-height: 1.5;
}


.popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.popular-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.popular-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.popular-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.popular-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.popular-emoji { font-size: 36px; }

.popular-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
}

.popular-card-sub {
  font-size: 12px;
  color: var(--primary-light);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.popular-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popular-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--gray);
}

.popular-feature::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
  flex-shrink: 0;
}


.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(82,183,136,0.15), transparent 70%);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.1), transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-title span { color: var(--accent-light); font-style: italic; }

.cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }

.btn-gold {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(201,168,76,0.35);
}

.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201,168,76,0.5); }


.contact-bar {
  background: var(--white);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.contact-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.contact-bar-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-bar-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary-light); }

.contact-bar-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-bar-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-bar-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

.contact-bar-value a { color: var(--dark); transition: var(--transition); }
.contact-bar-value a:hover { color: var(--primary); }


footer {
  background: var(--primary-dark);
  padding: 60px 0 28px;
  color: rgba(255,255,255,0.75);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-desc {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  max-width: 280px;
}

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

.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--accent-light); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-copy a { color: var(--accent-light); transition: var(--transition); }
.footer-copy a:hover { color: var(--white); }


.contact-hero {
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--primary-dark);
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(27,67,50,0.7), rgba(27,67,50,0.5));
  pointer-events: none;
}

.contact-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding-top: 80px;
}

.contact-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a { color: var(--accent-light); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

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

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-info-card:hover { transform: translateX(6px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); }

.contact-info-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
}

.contact-info-value a { color: var(--dark); transition: var(--transition); }
.contact-info-value a:hover { color: var(--primary); }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}

.whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.45); }

.contact-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border);
}

.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.contact-form-desc {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 32px;
  font-weight: 300;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group.full-width { grid-column: span 2; }

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.3px;
}

.form-input,
.form-textarea,
.form-select {
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary-light);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(82,183,136,0.1);
}

.form-textarea {
  height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.form-select { appearance: none; cursor: pointer; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(45,106,79,0.3);
  letter-spacing: 0.3px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(45,106,79,0.4);
}

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

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

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


.contact-form-wrap { position: relative; }

.form-flash {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.5;
}
.form-flash--ok {
  background: rgba(82,183,136,0.14);
  border: 1px solid rgba(82,183,136,0.45);
  color: var(--primary-dark);
}
.form-flash--err {
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.35);
  color: #991b1b;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.map-address-bar {
  margin-top: 20px;
  padding: 20px 28px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.map-address-bar__icon { font-size: 24px; }
.map-address-bar__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.map-address-bar__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}
.map-address-bar__btn {
  margin-left: auto;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}
.map-address-bar__btn:hover {
  background: var(--primary-light);
  color: var(--white);
}


.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,67,50,0.98);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-nav.open { opacity: 1; pointer-events: all; }

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}

.mobile-nav a:hover { color: var(--accent-light); }

.mobile-nav-close {
  position: absolute;
  top: 24px; right: 32px;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}


.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }


.about-inline-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.about-inline-link:hover { color: var(--primary-dark); }

.about-page-lead {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  color: var(--gray);
  line-height: 1.9;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mission-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.mission-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.mission-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.85;
  margin: 0;
}

.value-grid-about {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-tile {
  background: var(--white);
  padding: 28px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.value-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.value-tile-icon { font-size: 32px; margin-bottom: 12px; line-height: 1; }

.value-tile h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.value-tile p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.process-step {
  padding: 24px 20px;
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}

.process-step h3 {
  font-size: 16px;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}


@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
  .app-card:first-child, .app-card:nth-child(5) { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { right: 0; }
  .popular-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .contact-bar-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .value-grid-about { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .apps-grid { grid-template-columns: 1fr; }
  .popular-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .contact-form-wrap { padding: 28px 20px; }
  .hero-title { font-size: clamp(42px, 12vw, 72px); }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .products-grid { grid-template-columns: 1fr; }
  .value-grid-about { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px 0; }
  .stat-item:last-child { border-bottom: none; }
}
