:root {
  --primary: #064e3b; /* Emerald Green */
  --primary-700: #064032;
  --primary-50: #ecfdf5;
  --accent: #f59e0b; /* Amber Gold */
  --accent-700: #d97706;
  --accent-50: #fffbeb;
  --ink: #0f172a; /* Slate 900 */
  --muted: #64748b; /* Slate 500 */
  --light: #f8fafc; /* Slate 50 */
  --paper: #ffffff;
  --card: #ffffff;
  --white: #ffffff;
  --gray: #94a3b8; /* Slate 400 */
  --success: #10b981;
  --danger: #ef4444;
  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-soft: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --ring: 0 0 0 4px rgba(245, 158, 11, 0.2);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

body {
  font-family: 'Sora', sans-serif;
  background-color: var(--light);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

/* Texture Background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(at 0% 0%, hsla(158, 88%, 95%, 1) 0, transparent 50%), 
    radial-gradient(at 100% 0%, hsla(45, 93%, 94%, 1) 0, transparent 50%),
    radial-gradient(at 100% 100%, hsla(161, 89%, 96%, 1) 0, transparent 50%),
    radial-gradient(at 0% 100%, hsla(41, 88%, 95%, 1) 0, transparent 50%);
  z-index: -2;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

section {
  padding: 6rem 8%;
  position: relative;
}

.section-light {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Floating WA Button */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}

.wa-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Navbar Enhancement */
nav {
  padding: 1.2rem 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  font-family: 'Fraunces', serif;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav ul li a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

nav ul li a:hover {
  color: var(--primary);
}

nav ul li a:hover::after {
  width: 100%;
}

.nav-cta-mobile {
  display: none;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

@media (max-width: 900px) {
  nav {
    padding: 1rem 6%;
  }

  .menu-toggle {
    display: flex;
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  nav ul.active {
    right: 0;
  }

  nav ul li a {
    font-size: 1.2rem;
  }

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

  .nav-actions {
    display: none;
  }

  nav ul .nav-cta-mobile {
    display: none;
  }

  nav ul.active .nav-cta-mobile {
    display: block !important;
    width: 80%;
  }

  nav ul.active .nav-cta-mobile .btn {
    width: 100%;
  }

  section {
    padding: 4.5rem 6%;
  }

  .hero {
    padding: 9rem 6% 5rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Hero Section Enhancement */
.hero {
  padding: 12rem 8% 8rem;
  text-align: left;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  overflow: visible;
}

.hero-content {
  animation: slide-in-left 1s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-image {
  position: relative;
  animation: slide-in-right 1s ease both;
}

.hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 10px solid white;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  border-radius: var(--radius-xl);
  z-index: -1;
}

@media (max-width: 900px) {
  .hero-image::before {
    top: -10px;
    right: -10px;
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 640px) {
  .hero-image::before {
    display: none; /* Remove to prevent any potential overflow on small screens */
  }
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* Stats Section */
.stats-bar {
  display: flex;
  gap: 4rem;
  margin-top: 4rem;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: max-content;
}

@media (max-width: 1024px) {
  .stats-bar {
    gap: 2rem;
    padding: 1.5rem;
    margin: 3rem auto;
  }
}

@media (max-width: 768px) {
  .stats-bar {
    width: 100%;
    justify-content: space-around;
    gap: 1rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .stats-bar {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .stats-bar div[style*="width: 1px"] {
    display: none;
  }
  .stat-item {
    text-align: center;
  }
}

.stat-item {
  text-align: left;
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--primary);
  display: block;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Trust Bar */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
  opacity: 0.6;
  flex-wrap: wrap;
}

.trust-bar span {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}

.trust-logo {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--gray);
}

/* FAQ Accordion */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 480px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  cursor: pointer;
}

.faq-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.faq-item h4 {
  color: var(--primary);
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item h4::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent);
}

.faq-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 4rem auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--primary-50);
  transform: translateX(-50%);
}

.timeline-item {
  width: 50%;
  padding: 2rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border: 4px solid white;
  border-radius: 50%;
  top: 50%;
  z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-dot { right: -8px; transform: translateY(-50%); }
.timeline-item:nth-child(even) .timeline-dot { left: -8px; transform: translateY(-50%); }

.timeline-date {
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Ticker Enhancement */
.ticker {
  background: var(--primary);
  padding: 1.2rem 0;
  color: white;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.ticker-track {
  display: inline-block;
  animation: ticker 40s linear infinite;
  will-change: transform;
}

.ticker-track span {
  display: inline-block;
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  padding-right: 4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Product Enhancement */
.product-card {
  position: relative;
  border: none;
  background: white;
  padding: 1rem;
}

.product-media-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
}

.hero-badge {
  top: auto;
  bottom: 2rem;
  left: -2rem;
  right: auto;
}

@media (max-width: 1200px) {
  .hero-badge {
    left: 0;
  }
}

@media (max-width: 1024px) {
  .hero-badge {
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    bottom: 1rem;
  }
}

@media (max-width: 640px) {
  .hero-badge {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: -2rem auto 2rem;
    box-shadow: var(--shadow-soft);
  }
}

/* Animations */
@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 10rem;
  }
  .hero-content, .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero h1 { font-size: 3rem; }
  .stats-bar { margin: 3rem auto; }
}

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 30px; }
  .timeline-item { width: 100%; text-align: left !important; padding-left: 60px; }
  .timeline-item:nth-child(even) { left: 0; }
  .timeline-dot { left: 22px !important; }
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.section-header p {
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

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

.product-media {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.product-info {
  padding: 1.5rem;
}

.product-status {
  display: inline-block;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: 0.08em;
}

.status-available {
  background: rgba(19, 78, 67, 0.12);
  color: var(--primary);
}

.status-sold {
  background: rgba(234, 88, 12, 0.12);
  color: var(--accent-700);
}

.product-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0.5rem 0 1rem;
}

/* Map */
.map-container {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 2rem auto 0;
  max-width: 1200px; /* Wider horizontally */
  width: 100%;
  height: 550px; /* Slightly taller vertically */
  line-height: 0;
}

@media (max-width: 768px) {
  .map-container {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .map-container {
    height: 250px;
  }
}

.map-container img {
  width: 100%;
  height: 100%; /* Fill the container height */
  display: block;
  object-fit: cover; /* Maintain aspect ratio without stretching */
  object-position: center;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transform: translateZ(0);
  transition: var(--transition);
}

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

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.testi-card {
  background: rgba(255, 255, 255, 0.85);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.testi-card::before {
  content: "“”";
  position: absolute;
  top: -18px;
  right: 24px;
  font-size: 3.5rem;
  color: rgba(19, 78, 67, 0.12);
  font-family: 'Fraunces', serif;
}

.testi-card p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.testi-card h4 {
  font-size: 0.95rem;
  color: var(--primary);
}

/* CTA Strip */
.cta-strip {
  padding: 4.5rem 10%;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 3rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, rgba(19, 78, 67, 0.95), rgba(15, 61, 53, 0.95));
  color: white;
  box-shadow: var(--shadow);
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.4rem;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.price-card {
  background: var(--card);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(19, 78, 67, 0.2);
}

.price-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.price-card .price {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.price-card ul {
  list-style: none;
  margin-bottom: 2rem;
  color: var(--muted);
}

.price-card ul li {
  margin-bottom: 0.8rem;
}

.price-card.featured {
  border-color: rgba(245, 159, 11, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(245, 159, 11, 0.25);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 247, 237, 0.95));
}

.badge {
  background: linear-gradient(120deg, var(--accent), var(--accent-700));
  color: white;
  padding: 0.35rem 0.8rem;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

/* Access/Facility Icons */
.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.access-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.access-item h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Steps */
.steps-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-num {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-soft);
}

/* Buttons */
.btn {
  padding: 0.95rem 1.8rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(130deg, var(--primary), #1b6b55);
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-accent {
  background: linear-gradient(130deg, var(--accent), var(--accent-700));
  color: #23170a;
}

.btn-muted {
  background: #f1f1f1;
  color: #9aa3a3;
  cursor: not-allowed;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Gallery Section _1 */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 400px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
}

.gallery-card {
  position: relative;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: var(--transition);
}

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

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  opacity: 0;
  transition: var(--transition);
}

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

/* Criteria Section _1 */
.criteria-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .criteria-flex {
    flex-direction: column;
    gap: 2rem;
  }
}

.criteria-content {
  flex: 1;
  min-width: 300px;
}

.criteria-img-wrapper {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.criteria-img-wrapper img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 8px solid white;
}

.criteria-item-v2 {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.criteria-item-v2:hover {
  transform: translateX(10px);
  border-left: 5px solid var(--accent);
}

.criteria-num-v2 {
  width: 40px;
  height: 40px;
  background: var(--primary-50);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

/* Description Section _1 */
.featured-desc {
  background: white;
  padding: 4rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .featured-desc {
    padding: 2rem 1.5rem;
  }
}

.featured-desc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--accent);
}

.featured-desc h3 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.featured-desc p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.spec-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--primary-50);
  font-size: 0.9rem;
}

.spec-table td:first-child {
  font-weight: 700;
  color: var(--primary);
  width: 40%;
}

.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--accent-50);
  color: var(--accent-700);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.payment-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-700));
  color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.payment-card::after {
  content: "\f0d6";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 8rem;
  opacity: 0.1;
  font-weight: 900;
}

/* Improved Footer */
footer {
  background: var(--primary-700);
  color: white;
  padding: 6rem 8% 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-700), var(--accent));
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 1100px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .footer-brand, .footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links h4::after, .footer-contact h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-contact p {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Global Responsive Adjustments */
@media (max-width: 768px) {
  section {
    padding: 4rem 6%;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  section {
    padding: 3rem 5%;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}

.footer-brand .logo {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-brand p {
  opacity: 0.7;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  color: var(--primary-700);
}

.footer-links h4, .footer-contact h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h4::after, .footer-contact h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 1rem;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  opacity: 0.7;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
}

.footer-links ul li a:hover {
  opacity: 1;
  color: var(--accent);
  transform: translateX(5px);
}

.footer-contact p {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  opacity: 0.7;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 0.3rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero,
.section-header,
.product-card,
.price-card,
.profile-card,
.feature-item,
.map-container,
.gallery-card,
.testi-card,
.cta-inner {
  animation: fadeUp 0.75s ease both;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .btn {
    flex: 1;
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }

  .pricing-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    flex-direction: column;
  }

  .ticker-track {
    animation-duration: 24s;
  }
}
