/* FBD Cleaning - Premium Design System & Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette - Modernized from FBD logo colors */
  --primary-green: #008A3B;
  --primary-green-light: #eafaf1;
  --primary-green-hover: #007030;
  
  --brand-blue: #0060CA;
  --brand-blue-light: #eaf2fc;
  --brand-red: #E51E25;
  --brand-red-light: #fdeaeb;
  --brand-yellow: #FFCC00;
  --brand-yellow-dark: #cc9900;
  
  --dark-slate: #0f172a;
  --medium-slate: #334155;
  --light-slate: #64748b;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  
  /* Layout & Spacing */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-subtle: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

/* Glassmorphism Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-subtle);
}

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

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

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-green);
  letter-spacing: -0.5px;
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--light-slate);
  font-weight: 500;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

nav ul li a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--medium-slate);
  position: relative;
  padding: 4px 0;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-green);
  transition: var(--transition-smooth);
}

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

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

.nav-btn {
  background-color: var(--primary-green);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 138, 59, 0.25);
  display: inline-block;
}

.nav-btn:hover {
  background-color: var(--primary-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 138, 59, 0.35);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-slate);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  padding: 160px 24px 80px;
  background: radial-gradient(circle at 80% 20%, var(--primary-green-light) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, var(--brand-blue-light) 0%, transparent 40%),
              #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-text h1 span.highlight {
  color: var(--primary-green);
  position: relative;
  display: inline-block;
}

.hero-text h1 span.highlight::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(0, 138, 59, 0.15);
  z-index: -1;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--medium-slate);
  margin-bottom: 36px;
  max-width: 600px;
}

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

.btn {
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--primary-green);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 138, 59, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 138, 59, 0.35);
}

.btn-secondary {
  background-color: #fff;
  color: var(--dark-slate);
  border: 2px solid rgba(15, 23, 42, 0.1);
}

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

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-blob {
  position: absolute;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(0, 138, 59, 0.1) 0%, rgba(0, 96, 202, 0.05) 100%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  animation: blob-float 12s ease-in-out infinite alternate;
}

.hero-logo-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: var(--transition-smooth);
  width: 100%;
  max-width: 360px;
}

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

.hero-logo-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

/* Badge tags */
.badge-container {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.badge {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-green {
  background-color: var(--primary-green-light);
  color: var(--primary-green);
}

.badge-blue {
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
}

/* Sections General */
section {
  padding: 100px 24px;
}

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

.section-header .subtitle {
  color: var(--primary-green);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.5rem;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--light-slate);
  font-size: 1.1rem;
}

/* Products We Deal In */
.products-section {
  background-color: #ffffff;
  position: relative;
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 12px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  background-color: var(--bg-light);
  color: var(--medium-slate);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn.active {
  background-color: var(--primary-green);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 138, 59, 0.2);
}

.tab-btn:hover:not(.active) {
  background-color: var(--primary-green-light);
  color: var(--primary-green);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Animation trigger class */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(15, 23, 42, 0.03);
  box-shadow: var(--shadow-subtle);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--accent-color, var(--primary-green));
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background-color: #fff;
  border-color: rgba(15, 23, 42, 0.08);
}

.product-card:hover::before {
  width: 8px;
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background-color: var(--icon-bg, var(--primary-green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--icon-color, var(--primary-green));
}

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

.product-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.product-card p {
  color: var(--medium-slate);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-color, var(--primary-green));
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color, var(--primary-green));
}

/* Product list item style colors helper */
.prod-toilet { --accent-color: var(--brand-blue); --icon-bg: var(--brand-blue-light); --icon-color: var(--brand-blue); }
.prod-glass { --accent-color: #06b6d4; --icon-bg: #ecfeff; --icon-color: #0891b2; }
.prod-floor { --accent-color: var(--primary-green); --icon-bg: var(--primary-green-light); --icon-color: var(--primary-green); }
.prod-bathroom { --accent-color: #8b5cf6; --icon-bg: #f5f3ff; --icon-color: #7c3aed; }
.prod-dish { --accent-color: var(--brand-yellow-dark); --icon-bg: #fffbeb; --icon-color: var(--brand-yellow-dark); }
.prod-surf { --accent-color: var(--brand-red); --icon-bg: var(--brand-red-light); --icon-color: var(--brand-red); }

.prod-handwash { --accent-color: #ec4899; --icon-bg: #fdf2f8; --icon-color: #db2777; }
.prod-sanitiser { --accent-color: #14b8a6; --icon-bg: #f0fdfa; --icon-color: #0d9488; }
.prod-shampoo { --accent-color: #6366f1; --icon-bg: #eef2ff; --icon-color: #4f46e5; }
.prod-bodywash { --accent-color: #f97316; --icon-bg: #fff7ed; --icon-color: #ea580c; }

/* Founders Section */
.founders-section {
  background-color: var(--bg-light);
  position: relative;
}

.founders-container {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.founder-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 23, 42, 0.05);
  text-align: center;
  max-width: 380px;
  width: 100%;
  transition: var(--transition-smooth);
  position: relative;
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 138, 59, 0.15);
}

.founder-img-wrapper {
  width: 140px;
  height: 175px; /* Passport ratio aspect ~4:5 */
  margin: 0 auto 24px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow-subtle);
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.founder-img-placeholder {
  font-size: 2.5rem;
  color: var(--light-slate);
}

.founder-card h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.founder-role {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

.founder-tagline {
  color: var(--medium-slate);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.founder-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.founder-social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--medium-slate);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: var(--transition-smooth);
}

.founder-social-btn:hover {
  background-color: var(--primary-green-light);
  color: var(--primary-green);
  border-color: var(--primary-green);
}

/* Contact & Connect Section */
.contact-section {
  background-color: #ffffff;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}

.contact-form-side {
  background: var(--bg-light);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.03);
  box-shadow: var(--shadow-subtle);
}

.contact-form-side h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.contact-form-side p {
  color: var(--light-slate);
  margin-bottom: 32px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--medium-slate);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(15, 23, 42, 0.08);
  background-color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-slate);
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(0, 138, 59, 0.1);
}

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

.form-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

/* Contact Info / Connect details */
.connect-info-side {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-green-light);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.info-content h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.info-content p, .info-content a {
  color: var(--medium-slate);
  font-size: 0.95rem;
}

.info-content a:hover {
  color: var(--primary-green);
}

/* Instagram Showcase QR code card */
.insta-qr-card {
  background: linear-gradient(135deg, #fdf2f8 0%, #f0fdf4 100%);
  border: 1px solid rgba(0, 138, 59, 0.1);
  padding: 32px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.insta-qr-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.qr-code-img {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-sm);
  border: 4px solid #fff;
  box-shadow: var(--shadow-subtle);
  background-color: #fff;
}

.qr-details h4 {
  font-size: 1.2rem;
  color: var(--dark-slate);
  margin-bottom: 6px;
}

.qr-details p {
  font-size: 0.85rem;
  color: var(--medium-slate);
  margin-bottom: 12px;
}

.insta-handle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #db2777;
  font-size: 0.9rem;
}

.insta-handle svg {
  width: 18px;
  height: 18px;
}

/* Map Location Preview section */
.map-preview-section {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.map-info h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.map-info p {
  color: var(--medium-slate);
  margin-bottom: 24px;
}

.map-btn {
  align-self: flex-start;
}

.map-mock {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
  background-color: #cbd5e1;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
}

.map-mock-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #f1f5f9 0%, #cbd5e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pin {
  color: var(--brand-red);
  animation: map-bounce 2s infinite alternate;
  z-index: 5;
}

.map-pin svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}

.map-mock-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(15, 23, 42, 0);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-mock-link:hover {
  background-color: rgba(15, 23, 42, 0.4);
}

.map-overlay-text {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  background-color: rgba(0, 138, 59, 0.85);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
}

.map-mock-link:hover .map-overlay-text {
  opacity: 1;
  transform: translateY(0);
}

/* Footer Section */
footer {
  background-color: var(--dark-slate);
  color: #94a3b8;
  padding: 80px 24px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 48px;
  margin-bottom: 32px;
}

.footer-brand h4 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

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

.footer-logo {
  height: 40px;
  width: auto;
  border-radius: 4px;
  background-color: #fff;
  padding: 2px;
}

.footer-links h5, .footer-address h5 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 700;
}

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

.footer-links ul li a {
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-links ul li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-address p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-copy {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-copy p {
  color: #64748b;
}

/* Animations */
@keyframes blob-float {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(0deg);
  }
  100% {
    border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    transform: rotate(180deg);
  }
}

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

/* Toast Notification Styles */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
}

.toast {
  background-color: var(--dark-slate);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-success {
  border-left: 4px solid var(--primary-green);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 3rem;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .map-preview-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding: 24px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
  }
  
  nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  nav ul {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .nav-btn {
    width: 100%;
    text-align: center;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-logo-card {
    margin: 0 auto;
  }
  
  .contact-form-side {
    padding: 32px 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-copy {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
