/* ============================================
   Blessed & Highly Caffeinated — Stylesheet
   Forest Green + Off-White | Warm & Friendly
   ============================================ */

:root {
  --green-900: #1a3a25;
  --green-800: #2D5A3D;
  --green-700: #3d7a52;
  --green-600: #4a9462;
  --green-500: #5ba872;
  --green-400: #7bc494;
  --green-300: #a8d8b8;
  --green-200: #d0ecd9;
  --green-100: #e8f5ec;
  --green-50: #f4faf5;

  --cream-900: #3d3832;
  --cream-800: #5c554d;
  --cream-700: #7a7268;
  --cream-600: #9a9088;
  --cream-500: #b8afa6;
  --cream-400: #d4cdc4;
  --cream-300: #e8e2da;
  --cream-200: #f2ede6;
  --cream-100: #f9f6f1;
  --cream-50: #fdfcfa;

  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(45, 90, 61, 0.06), 0 1px 2px rgba(45, 90, 61, 0.04);
  --shadow-md: 0 4px 16px rgba(45, 90, 61, 0.08), 0 2px 6px rgba(45, 90, 61, 0.05);
  --shadow-lg: 0 12px 40px rgba(45, 90, 61, 0.12), 0 4px 12px rgba(45, 90, 61, 0.06);
  --shadow-xl: 0 24px 60px rgba(45, 90, 61, 0.15), 0 8px 20px rgba(45, 90, 61, 0.08);

  --transition: 0.3s 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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--cream-800);
  background-color: var(--cream-50);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--green-700);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--green-500);
}

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

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 252, 250, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 90, 61, 0.08);
  transition: box-shadow var(--transition), background var(--transition);
}

.nav.scrolled {
  background: rgba(253, 252, 250, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--green-800);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-logo:hover {
  color: var(--green-700);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  color: var(--green-700);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--cream-800);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--green-700);
  background: var(--green-100);
}

.nav-cta {
  background: var(--green-700) !important;
  color: white !important;
  padding: 10px 22px !important;
}

.nav-cta:hover {
  background: var(--green-600) !important;
  color: white !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--green-800);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 58, 37, 0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--cream-50) 0%, var(--green-50) 50%, var(--cream-100) 100%);
  padding: 120px 24px 0;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 25% 25%, var(--green-700) 1px, transparent 1px),
                    radial-gradient(circle at 75% 75%, var(--green-700) 1px, transparent 1px);
  background-size: 60px 60px, 40px 40px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-900);
  margin-bottom: 24px;
}

.hero-headline .text-highlight {
  color: var(--green-600);
  position: relative;
}

.hero-headline .text-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--green-300);
  border-radius: 3px;
  z-index: -1;
  opacity: 0.6;
}

.hero-headline em {
  font-style: italic;
  color: var(--green-700);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--cream-700);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--green-700);
  color: white;
  box-shadow: 0 4px 16px rgba(45, 90, 61, 0.3);
}

.btn-primary:hover {
  background: var(--green-600);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 90, 61, 0.35);
}

.btn-secondary {
  background: white;
  color: var(--green-800);
  border: 2px solid var(--green-200);
}

.btn-secondary:hover {
  border-color: var(--green-400);
  background: var(--green-50);
  color: var(--green-800);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Hero Visual Cards */
.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-card-main {
  position: relative;
  z-index: 2;
}

.hero-card-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hero-card-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--green-800);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
}

.hero-card-badge svg {
  width: 16px;
  height: 16px;
  color: var(--green-600);
}

.hero-card-float {
  position: absolute;
  background: white;
  padding: 16px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.hero-card-float .float-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-100);
  border-radius: var(--radius-md);
  color: var(--green-700);
  flex-shrink: 0;
}

.hero-card-float .float-icon svg {
  width: 20px;
  height: 20px;
}

.hero-card-float .float-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.hero-card-float .float-text strong {
  font-size: 0.95rem;
  color: var(--green-900);
}

.hero-card-float .float-text span {
  font-size: 0.78rem;
  color: var(--cream-600);
}

.hero-card-1 {
  top: 20px;
  right: -20px;
  animation-delay: 0s;
}

.hero-card-2 {
  bottom: 160px;
  left: -30px;
  animation-delay: 1.3s;
}

.hero-card-3 {
  bottom: 30px;
  right: 10px;
  animation-delay: 2.6s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  line-height: 0;
  color: var(--cream-50);
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ============================================
   Section Shared Styles
   ============================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-600);
  margin-bottom: 14px;
  padding: 6px 16px;
  background: var(--green-100);
  border-radius: var(--radius-full);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--green-900);
  margin-bottom: 18px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--cream-700);
  line-height: 1.8;
  max-width: 600px;
}

/* ============================================
   Products Section
   ============================================ */
.products {
  padding: 100px 0;
  background: var(--cream-50);
}

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

.section-header .section-desc {
  margin: 0 auto;
}

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

.product-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.product-img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-body {
  padding: 28px 30px 32px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.product-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-100);
  border-radius: var(--radius-md);
  color: var(--green-700);
  flex-shrink: 0;
}

.product-icon svg {
  width: 24px;
  height: 24px;
}

.product-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 8px;
}

.product-body p {
  font-size: 0.925rem;
  color: var(--cream-700);
  line-height: 1.7;
}

/* ============================================
   About Section
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--green-50);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid white;
}

.about-img-secondary img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.about-experience {
  position: absolute;
  top: -20px;
  right: 30px;
  background: var(--green-700);
  color: white;
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-experience .exp-number {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.about-experience .exp-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}

.about-content {
  padding: 20px 0;
}

.about-text {
  font-size: 1.025rem;
  color: var(--cream-700);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: var(--radius-md);
  color: var(--green-700);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.value-icon svg {
  width: 22px;
  height: 22px;
}

.value-item strong {
  display: block;
  font-size: 1rem;
  color: var(--green-900);
  margin-bottom: 2px;
}

.value-item span {
  font-size: 0.875rem;
  color: var(--cream-600);
}

/* ============================================
   Visit Section
   ============================================ */
.visit {
  padding: 100px 0;
  background: var(--cream-50);
}

.visit-header {
  text-align: center;
  margin-bottom: 56px;
}

.visit-header .section-desc {
  margin: 0 auto;
}

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

.visit-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.visit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}

.visit-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-100);
  border-radius: var(--radius-lg);
  color: var(--green-700);
  margin: 0 auto 22px;
}

.visit-card-icon svg {
  width: 28px;
  height: 28px;
}

.visit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 16px;
}

.visit-card p {
  font-size: 0.925rem;
  color: var(--cream-700);
  line-height: 1.8;
  margin-bottom: 6px;
}

.visit-card .day {
  display: block;
  font-weight: 700;
  color: var(--cream-800);
}

.visit-card .time {
  display: block;
  color: var(--green-600);
  font-weight: 600;
}

.visit-card .time-closed {
  display: block;
  color: var(--cream-500);
  font-weight: 600;
}

.visit-card a {
  color: var(--green-700);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green-700);
  margin-top: 16px;
  transition: gap var(--transition);
}

.link-arrow:hover {
  gap: 10px;
  color: var(--green-600);
}

.link-arrow svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--green-50);
}

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

.contact-info .section-title {
  margin-bottom: 18px;
}

.contact-info > p {
  font-size: 1.025rem;
  color: var(--cream-700);
  line-height: 1.8;
  margin-bottom: 32px;
}

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

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--cream-800);
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  color: var(--green-600);
  flex-shrink: 0;
}

.contact-detail a {
  color: var(--green-700);
}

.contact-detail a:hover {
  color: var(--green-500);
}

.contact-form-wrap {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green-900);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--cream-800);
  background: var(--cream-100);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--cream-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-400);
  background: white;
  box-shadow: 0 0 0 4px rgba(91, 168, 114, 0.12);
}

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}

.form-success.show {
  display: flex;
}

.success-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-100);
  border-radius: var(--radius-full);
  color: var(--green-700);
}

.success-icon svg {
  width: 36px;
  height: 36px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--green-900);
}

.form-success p {
  font-size: 1rem;
  color: var(--cream-700);
  line-height: 1.7;
  max-width: 300px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: white;
  text-decoration: none;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  color: var(--green-400);
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin-bottom: 18px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-links span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--green-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   Scroll Animations
   ============================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-aos].aos-delay-1 { transition-delay: 0.1s; }
[data-aos].aos-delay-2 { transition-delay: 0.2s; }
[data-aos].aos-delay-3 { transition-delay: 0.3s; }
[data-aos].aos-delay-4 { transition-delay: 0.4s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
    min-height: 460px;
  }

  .hero-content {
    text-align: center;
    padding: 20px 0;
  }

  .hero-sub {
    margin: 0 auto 36px;
  }

  .hero-actions {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-images {
    max-width: 480px;
    margin: 0 auto;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 100px 32px 40px;
    gap: 4px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-size: 1rem;
  }

  .nav-cta {
    text-align: center;
    justify-content: center;
    margin-top: 12px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 20px 0;
    min-height: auto;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-card-main img {
    height: 400px;
  }

  .hero-card-float {
    padding: 12px 16px;
  }

  .hero-card-1 {
    right: 0;
    top: 10px;
  }

  .hero-card-2 {
    left: 0;
    bottom: 120px;
  }

  .hero-card-3 {
    right: 0;
    bottom: 10px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .visit-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .about-img-secondary {
    width: 150px;
    right: -10px;
    bottom: -20px;
  }

  .about-img-secondary img {
    height: 150px;
  }

  .contact-form-wrap {
    padding: 28px 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .hero-card-float {
    display: none;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-card-main img {
    height: 380px;
  }
}
