/* 
=========================================
88 GARDEN - PREMIUM IMPORTS FRUITS
Landing Page Design System & Stylesheet
=========================================
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* Design Tokens & CSS Variables */
:root {
  /* Colors */
  --primary: #0A3B29;
  --primary-rgb: 10, 59, 41;
  --primary-light: #12543C;
  --primary-dark: #052016;
  
  --accent: #D4AF37;
  --accent-rgb: 212, 175, 55;
  --accent-light: #E5C05B;
  --accent-dark: #AA8721;
  
  --bg-light: #F9FBF9;
  --bg-dark: #121F1A;
  --bg-dark-card: rgba(18, 31, 26, 0.85);
  
  --text-dark: #1C2E24;
  --text-light: #FFFFFF;
  --text-gray: #6A8274;
  
  --white: #FFFFFF;
  --gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA8721 100%);
  --emerald-gradient: linear-gradient(135deg, #0A3B29 0%, #12543C 100%);
  --overlay-gradient: linear-gradient(to bottom, rgba(10, 59, 41, 0.7) 0%, rgba(10, 59, 41, 0.95) 100%);
  
  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout & Spacing */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-circle: 50%;
  
  --transition-fast: all 0.2s ease;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Shadow & Blur */
  --shadow-sm: 0 4px 10px rgba(10, 59, 41, 0.05);
  --shadow-md: 0 10px 30px rgba(10, 59, 41, 0.08);
  --shadow-lg: 0 20px 40px rgba(10, 59, 41, 0.15);
  --shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.3);
  --blur-glass: blur(16px);
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.2);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset for sticky header */
  font-size: 16px;
}

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

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

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

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

ul {
  list-style: none;
}

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

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

.text-gradient-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-padding {
  padding: 100px 0;
}

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

.section-subtitle {
  font-family: var(--font-body);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

/* Glassmorphism Styles */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 8px;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--primary-dark);
  box-shadow: var(--shadow-gold);
  border: 1px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

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

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

/* 
=========================================
HEADER & NAVIGATION
=========================================
*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(10, 59, 41, 0.95);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  height: 70px;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-circle);
  object-fit: cover;
  border: 1.5px solid var(--accent);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.logo-text span {
  color: var(--accent);
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 6px 0;
}

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

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

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

.nav-link.active {
  color: var(--accent);
}

.header-cta .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: var(--white);
  border-radius: 5px;
  transition: var(--transition-fast);
}

/* 
=========================================
HERO SECTION
=========================================
*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding-top: 80px;
  overflow: hidden;
  background-color: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: scale(1.05);
  animation: zoomBg 20s infinite alternate ease-in-out;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-gradient);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s 0.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--accent-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.hero-feature-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-feature-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
}

.hero-feature-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.9);
  animation: scaleUp 1s 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-card {
  width: 100%;
  max-width: 440px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
  transform: rotate(3deg);
  transition: var(--transition-smooth);
}

.hero-card:hover {
  transform: rotate(0deg) scale(1.03);
}

.hero-card-img-wrapper {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.hero-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.hero-card:hover .hero-card-img-wrapper img {
  transform: scale(1.08);
}

.hero-card-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-card-tag {
  background: var(--accent);
  color: var(--primary-dark);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-card-title {
  font-size: 1.25rem;
  color: var(--white);
}

/* Decorative Orbs */
.orb {
  position: absolute;
  border-radius: var(--radius-circle);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.orb-1 {
  top: 10%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: rgba(212, 175, 55, 0.15);
}

.orb-2 {
  bottom: -10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: rgba(10, 84, 60, 0.3);
}

/* 
=========================================
ABOUT SECTION
=========================================
*/
.about {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

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

.about-visual {
  position: relative;
}

.about-img-main {
  width: 85%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-floating {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 50%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid var(--bg-light);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  border-bottom: 4px solid var(--accent);
}

.about-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-intro {
  font-size: 1.15rem;
  color: var(--primary-light);
  font-weight: 600;
  line-height: 1.5;
}

.about-text {
  color: var(--text-gray);
}

.about-commitments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
}

.about-commit-item {
  display: flex;
  gap: 12px;
}

.about-commit-icon {
  width: 24px;
  height: 24px;
  background: rgba(10, 59, 41, 0.08);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.about-commit-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.about-commit-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* 
=========================================
PRODUCTS SECTION
=========================================
*/
.products {
  background: var(--bg-dark);
  color: var(--white);
  position: relative;
}

.products .section-title {
  color: var(--white);
}

.products-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.filter-btn.active {
  background: var(--gold-gradient);
  color: var(--primary-dark);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

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

.product-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 45px rgba(5, 32, 22, 0.4);
}

.product-img-wrapper {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
}

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

.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-origin {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.product-price {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--accent-light);
}

.product-actions {
  display: flex;
  gap: 8px;
}

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-icon:hover {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: transparent;
}

/* 
=========================================
PRODUCT DETAIL MODAL (POPUP)
=========================================
*/
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 32, 22, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  width: 100%;
  max-width: 850px;
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-smooth);
}

.modal-overlay.open .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

.modal-image-wrapper {
  height: 100%;
  min-height: 400px;
  position: relative;
}

.modal-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  padding: 40px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-origin {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.modal-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.modal-price {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-light);
  margin-bottom: 24px;
}

.modal-description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.modal-details-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.modal-detail-item {
  display: flex;
  flex-direction: column;
}

.modal-detail-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  font-weight: 600;
}

.modal-detail-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.modal-actions {
  display: flex;
  gap: 16px;
}

.modal-actions .btn {
  flex: 1;
}

/* 
=========================================
UNIQUE SELLING POINTS (USPs)
=========================================
*/
.usps {
  background: var(--bg-light);
  position: relative;
}

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

.usp-card {
  padding: 48px 32px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.usp-card:hover {
  transform: translateY(-8px);
  border-color: rgba(10, 59, 41, 0.08);
  box-shadow: var(--shadow-premium);
}

.usp-icon-wrapper {
  width: 72px;
  height: 72px;
  background: rgba(10, 59, 41, 0.05);
  color: var(--primary);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  font-size: 2rem;
  position: relative;
  transition: var(--transition-smooth);
}

.usp-card:hover .usp-icon-wrapper {
  background: var(--primary);
  color: var(--accent-light);
  transform: rotateY(180deg);
}

.usp-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.usp-description {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* 
=========================================
TESTIMONIALS SECTION
=========================================
*/
.testimonials {
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  z-index: 2;
  position: relative;
}

.testimonial-card {
  padding: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
}

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

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-circle);
  object-fit: cover;
  border: 2px solid var(--accent);
}

.testi-name {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.testi-job {
  font-size: 0.75rem;
  color: var(--accent-light);
}

.testi-stars {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.testi-content {
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  position: relative;
}

/* 
=========================================
CONTACT & INTERACTIVE MAP SECTION
=========================================
*/
.contact {
  background: var(--bg-light);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-info-desc {
  color: var(--text-gray);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(10, 59, 41, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-detail-heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.contact-detail-text {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.contact-form-panel {
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(10, 59, 41, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(10, 59, 41, 0.15);
  background: var(--bg-light);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(10, 59, 41, 0.08);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.contact-form-panel .btn {
  width: 100%;
}

/* Map Card component */
.map-card {
  margin-top: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10, 59, 41, 0.06);
}

.map-header {
  padding: 16px 24px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-header-title {
  font-size: 1rem;
  font-weight: 700;
}

.map-body {
  height: 260px;
  position: relative;
  background: #E5E9E5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-illustration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(10, 59, 41, 0.06) 0%, transparent 50%);
}

/* Simulated grid patterns like streets */
.map-illustration::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* Simulated streets */
.map-street {
  position: absolute;
  background: #FFFFFF;
  border-radius: 4px;
}
.street-1 { top: 40px; left: 0; width: 100%; height: 20px; transform: rotate(-5deg); }
.street-2 { top: 160px; left: 0; width: 100%; height: 25px; transform: rotate(10deg); }
.street-3 { top: 0; left: 120px; width: 30px; height: 100%; transform: rotate(5deg); }
.street-4 { top: 0; left: 450px; width: 40px; height: 100%; transform: rotate(-15deg); }

/* Landmark green gardens */
.map-park {
  position: absolute;
  background: rgba(10, 59, 41, 0.12);
  border-radius: 12px;
}
.park-1 { top: 70px; left: 180px; width: 150px; height: 70px; transform: rotate(-10deg); }
.park-2 { top: 200px; left: 50px; width: 100px; height: 50px; }

/* The elegant pin drop of 88 Garden */
.map-pin {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  animation: pinBounce 2s infinite alternate ease-in-out;
}

.pin-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(10, 59, 41, 0.3);
  border: 2px solid var(--accent);
}

.pin-icon i {
  transform: rotate(45deg);
  font-size: 1.15rem;
}

.pin-glow {
  position: absolute;
  bottom: -4px;
  width: 14px;
  height: 4px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  animation: pulseGlow 2s infinite alternate ease-in-out;
}

.pin-tooltip {
  position: absolute;
  bottom: 54px;
  background: var(--primary-dark);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--accent);
}

.pin-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: var(--primary-dark) transparent;
  display: block;
  width: 0;
}

.map-cta {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 6;
}

.map-cta .btn {
  padding: 8px 16px;
  font-size: 0.75rem;
}

/* 
=========================================
FOOTER SECTION
=========================================
*/
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.footer-logo img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-circle);
  border: 1.5px solid var(--accent);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  max-width: 360px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-fast);
}

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

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

.footer-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent);
  padding-left: 5px;
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-icon {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-contact-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

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

.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.back-to-top {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-circle);
  background: var(--accent);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

/* 
=========================================
ZALO WIDGET & FLOATING CHAT BUBBLE
=========================================
*/
.zalo-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  pointer-events: auto;
}

.zalo-tooltip {
  background: var(--white);
  color: var(--text-dark);
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--primary);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(20px);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.zalo-bubble:hover .zalo-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.zalo-btn {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-circle);
  background: #0084FF; /* Zalo classic blue gradient */
  background: linear-gradient(135deg, #0084ff 0%, #0056b3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 132, 255, 0.4);
  border: 2px solid var(--white);
  position: relative;
}

.zalo-btn::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: var(--radius-circle);
  border: 1px solid rgba(0, 132, 255, 0.4);
  animation: pulseRing 1.8s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

.zalo-btn img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* 
=========================================
TOAST NOTIFICATIONS (ALERT)
=========================================
*/
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: var(--bg-dark-card);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid var(--accent);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(20px);
  opacity: 0;
  animation: toastIn 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-icon {
  color: var(--accent);
  font-size: 1.2rem;
}

/* 
=========================================
KEYFRAME ANIMATIONS
=========================================
*/
@keyframes zoomBg {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUp {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes toastIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pinBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.2; }
  100% { transform: scale(1.8); opacity: 0.5; }
}

@keyframes pulseRing {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 0.4; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* 
=========================================
RESPONSIVE DESIGN (BREAKPOINTS)
=========================================
*/

/* Desktop & Laptop Small (under 1200px) */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 3rem;
  }
  .about-img-main {
    height: 400px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid .testimonial-card:last-child {
    display: none; /* Hide 3rd on tablet landscape */
  }
}

/* Tablet (under 992px) */
@media (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-top: 40px;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-features {
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-visual {
    order: -1; /* Image first on tablet/mobile */
  }
  .hero-card {
    transform: rotate(0deg);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  .about-img-main {
    width: 100%;
    height: 360px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .modal-grid {
    grid-template-columns: 1fr;
  }
  .modal-image-wrapper {
    height: 250px;
    min-height: auto;
  }
  .modal-content {
    padding: 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Mobile Devices (under 768px) */
@media (max-width: 767px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--primary-dark);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: var(--transition-smooth);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    align-items: flex-start;
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  /* Menu icon animation */
  .nav-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .header-cta {
    display: none; /* Hide header cta on mobile */
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-badge {
    font-size: 0.75rem;
  }
  .hero-card-img-wrapper {
    height: 220px;
  }
  
  .products-filter {
    gap: 8px;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .usps-grid {
    grid-template-columns: 1fr;
  }
  .usp-card {
    padding: 32px 24px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-panel {
    padding: 24px;
  }
  
  .modal-title {
    font-size: 1.8rem;
  }
  .modal-details-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .modal-actions {
    flex-direction: column;
  }
  
  .zalo-bubble {
    bottom: 20px;
    right: 20px;
  }
  .zalo-tooltip {
    display: none; /* Hide tooltips on mobile */
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
