:root {
  /* Color Palette - Elegant Dark Mauve/Purple Theme */
  --bg: #c12c6f;
  --bg-light: #8c626f;
  --surface: #804444;
  --panel: rgba(93, 60, 100, 0.15);
  --panel-solid: #9c587a;
  --accent: #D391B0;
  --accent-dark: #BA6E8F;
  --accent-light: #e8b4cc;
  --dusty-pink: #9F6496;
  --mauve: #7B466A;
  --deep-purple: #b94390;
  --text: #f5f0f5;
  --text-muted: #b8a5b8;
  --muted: #9a8a9a;
  --card: rgba(31, 18, 53, 0.8);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --max-w: 1400px;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #D391B0 0%, #BA6E8F 50%, #7B466A 100%);
  --gradient-dark: linear-gradient(180deg, #90577b 0%, #150830 100%);
  --gradient-card: linear-gradient(145deg, rgba(93, 60, 100, 0.2) 0%, rgba(23, 9, 58, 0.8) 100%);
  --glass: rgba(12, 4, 32, 0.85);
  --glass-light: rgba(31, 18, 53, 0.9);

  /* Shadows */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(211, 145, 176, 0.3);
  --shadow-accent: 0 8px 32px rgba(211, 145, 176, 0.25);

  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(93, 60, 100, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(123, 70, 106, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(211, 145, 176, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(211, 145, 176, 0.02) 0%, transparent 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 100px;
}

.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Glassmorphism Navigation */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(211, 145, 176, 0.25);
  border-radius: var(--radius-lg);
  margin: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(211, 145, 176, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  max-width: calc(100vw - 32px);
}

header.scrolled {
  padding: 12px 24px;
  background: rgba(12, 4, 32, 0.98);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(211, 145, 176, 0.2);
  border-color: rgba(211, 145, 176, 0.3);
}

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

.logo img {
  height: 48px;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4)) brightness(1.1);
}

nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  border-radius: 30px;
}

nav a:hover::before,
nav a.active::before {
  opacity: 1;
}

nav a span {
  position: relative;
  z-index: 1;
}

nav a:hover,
nav a.active {
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.contact-info {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(211, 145, 176, 0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(211, 145, 176, 0.2);
}

.icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

#menuBtn {
  background: rgba(211, 145, 176, 0.15);
  color: var(--accent);
  border: 1px solid rgba(211, 145, 176, 0.25);
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(211, 145, 176, 0.2);
}

#menuBtn:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(211, 145, 176, 0.4);
}

/* Hero Section - Dark Elegant Style */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 80px;
  margin-top: -100px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/flowers/romentic2.jpeg') center right/cover no-repeat;
  z-index: 1;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero:hover::before {
  transform: scale(1);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg, 
    rgba(12, 4, 32, 0.95) 0%, 
    rgba(12, 4, 32, 0.85) 35%,
    rgba(12, 4, 32, 0.5) 55%,
    rgba(93, 60, 100, 0.3) 75%,
    rgba(211, 145, 176, 0.1) 100%
  );
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 650px;
  text-align: left;
  padding: 60px 80px;
  margin-left: 5%;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text);
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-style: italic;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 20px rgba(211, 145, 176, 0.3);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 0 40px 0;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(211, 145, 176, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--accent);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: translateY(-4px);
}

/* Sections */
section {
  padding: 100px 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
  text-align: center;
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 80px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Component Cards */
.products,
.flowers-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.card,
.service-card,
.flower-card {
  background: linear-gradient(145deg, rgba(189, 79, 132, 0.9) 0%, rgba(93, 60, 100, 0.25) 100%);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(20px);
}

.card::before,
.service-card::before,
.flower-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}

.card:hover,
.service-card:hover,
.flower-card:hover {
  transform: translateY(-12px);
  border-color: rgba(211, 145, 176, 0.4);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  background: linear-gradient(145deg, rgba(31, 18, 53, 0.95) 0%, rgba(93, 60, 100, 0.3) 100%);
}

.card:hover::before,
.service-card:hover::before,
.flower-card:hover::before {
  opacity: 1;
}

.card-icon,
.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(211, 145, 176, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 24px;
  border: 1px solid rgba(211, 145, 176, 0.2);
  transition: var(--transition);
}

.card:hover .card-icon,
.service-card:hover .service-icon {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.card h4,
.service-card h4,
.flower-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text);
}

.card p,
.service-card p,
.flower-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-btn,
.service-btn,
.flower-btn {
  width: 100%;
  padding: 16px;
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(211, 145, 176, 0.3);
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.card-btn:hover,
.service-btn:hover,
.flower-btn:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-accent);
}

.card img,
.flower-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  border: 1px solid rgba(211, 145, 176, 0.1);
}

#flowers .flowers-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

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

.about p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.about strong {
  color: var(--accent-light);
}

.mission {
  background: rgba(211, 145, 176, 0.08);
  padding: 32px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent);
  backdrop-filter: blur(10px);
}

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

.stat-item {
  text-align: left;
  padding: 20px;
  background: rgba(211, 145, 176, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(211, 145, 176, 0.1);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.about .photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(211, 145, 176, 0.2);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 1px solid rgba(211, 145, 176, 0.2);
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover {
  box-shadow: var(--shadow-glow);
  border-color: var(--accent);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 4, 32, 0.9), transparent);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Portfolio Grid Logic */
#portfolio .gallery-grid .gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

#portfolio .gallery-grid .gallery-item:nth-child(4) {
  grid-column: span 2;
}

/* Contact Form */
.form-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--gradient-card);
  padding: 60px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(211, 145, 176, 0.2);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
}

.quote-form {
  display: grid;
  gap: 32px;
}

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

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

.form-group label {
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--accent-light);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(211, 145, 176, 0.05);
  padding: 18px 24px;
  border: 2px solid rgba(211, 145, 176, 0.2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(211, 145, 176, 0.1);
  box-shadow: 0 0 0 4px rgba(211, 145, 176, 0.1), var(--shadow-glow);
}

.form-group select option {
  background: var(--bg);
  color: var(--text);
}

.form-actions {
  display: flex;
  gap: 20px;
}

/* Footer */
footer {
  background: linear-gradient(145deg, var(--surface) 0%, rgba(31, 18, 53, 0.95) 100%);
  padding: 100px 0 40px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border-top: 1px solid rgba(211, 145, 176, 0.2);
  box-shadow: 0 -4px 60px rgba(211, 145, 176, 0.15);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0.6;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-section h4 {
  color: var(--accent-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 32px;
}

.footer-section p,
.footer-section .contact-item,
.footer-section .hours {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(8px);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: rgba(211, 145, 176, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: var(--transition);
  border: 1px solid rgba(211, 145, 176, 0.2);
}

.social-links a:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}

.sali-section {
  background: var(--bg);
  padding: 80px 20px;
  text-align: center;
  border-top: 1px solid rgba(184, 83, 125, 0.1);
  border-bottom: 1px solid rgba(184, 83, 125, 0.1);
}

.sali-title {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.sali-logo {
  max-width: 700px;
  width: 100%;
  height: auto;

  transition: var(--transition);
 
  border-radius: 20px;
}

.sali-logo:hover {
  opacity: 1;
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .sali-section {
    padding: 60px 20px;
  }
  
  .sali-logo {
    max-width: 280px;
  }
}

.sali-member {
  text-align: center;
  padding: 40px 0 30px;
  border-top: 1px solid rgba(184, 83, 125, 0.15);
  margin-top: 40px;
}

.sali-member p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.sali-member img {
  max-width: 200px;
  height: auto;

  transition: var(--transition);
}

.sali-member img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(184, 83, 125, 0.15);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-item i {
  color: var(--accent);
  width: 20px;
}

.contact-item a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Scroll Top */
.scroll-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  box-shadow: var(--shadow-accent);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(211, 145, 176, 0.5);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 4, 32, 0.95);
  backdrop-filter: blur(20px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .about {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  header {
    padding: 12px 20px;
    margin: 12px;
  }

  nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 20px;
    right: 20px;
    background: rgba(112, 72, 214, 0.98);
    padding: 32px;
    border-radius: var(--radius-lg);
    flex-direction: column;
    border: 1px solid rgba(211, 145, 176, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(211, 145, 176, 0.2);
    z-index: 1000;
    backdrop-filter: blur(30px);
    gap: 8px;
  }

  nav a {
    padding: 16px 24px;
    font-size: 16px;
    width: 100%;
    text-align: center;
    border-radius: var(--radius-md);
  }

  nav.mobile-nav-open {
    display: flex;
    animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  #menuBtn {
    display: flex;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-inner {
    padding: 40px 30px;
    margin-left: 0;
    text-align: center;
    max-width: 100%;
  }

  .hero::after {
    background: linear-gradient(
      180deg, 
      rgba(12, 4, 32, 0.92) 0%, 
      rgba(12, 4, 32, 0.8) 50%,
      rgba(93, 60, 100, 0.4) 100%
    );
  }

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

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

  .hero-title {
    font-size: 3.5rem;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }

  header {
    margin: 8px;
    padding: 10px 16px;
  }

  section {
    padding: 60px 0;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    gap: 12px;
  }

  .form-container {
    padding: 32px 20px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-inner {
    padding: 30px 20px;
  }
}

/* Base Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(211, 145, 176, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(211, 145, 176, 0.5);
  }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--glass-light);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 2000;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(211, 145, 176, 0.2);
}

.notification.show {
  transform: translateX(-50%) translateY(0);
}

/* Flowers Showcase Section */
.flowers-showcase {
  background: var(--gradient-dark);
  padding: 100px 0;
  border-radius: var(--radius-lg);
  margin: 40px 0;
}

/* Section Header Enhancement */
.section-header {
  margin-bottom: 60px;
}

/* Padded Section Background */
.padded {
  padding: 80px 40px;
}

/* Why Choose Us Section */
.why-choose-us {
  background: transparent;
}

/* Comprehensive Services */
.comprehensive-services {
  background: var(--gradient-card) !important;
  border: 1px solid rgba(211, 145, 176, 0.15);
}

.capability-item {
  padding: 24px;
  background: rgba(211, 145, 176, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(211, 145, 176, 0.1);
  transition: var(--transition);
}

.capability-item:hover {
  border-color: rgba(211, 145, 176, 0.3);
  background: rgba(211, 145, 176, 0.08);
}