:root {
  /* Color Palette */
  --primary: #0A192F; /* Navy Blue */
  --primary-light: #112240;
  --accent: #10B981; /* Fresh Green */
  --accent-hover: #059669;
  --text-main: #FFFFFF;
  --text-muted: #8892B0;
  --text-dark: #0A192F;
  --bg-main: #FFFFFF;
  --bg-slate: #F8FAFC;
  --bg-dark: #0A192F;
  
  /* Typography */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows & Glass */
  --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.2);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-main);
  overflow-x: hidden;
  padding-bottom: 0;
  margin-bottom: 0;
}

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

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
}

h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; color: var(--text-dark); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.main-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.title-shop-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 0.7rem 1.8rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2.2rem;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 
              inset 0 0 20px rgba(255, 255, 255, 0.02);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.title-shop-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--accent), 0 0 30px var(--accent);
  display: inline-block;
  animation: pulseGlow 2s infinite alternate;
}

/* Shimmer Effect */
.title-shop-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transition: 0.5s;
  animation: shimmer 3s infinite;
}

.title-shop-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 185, 129, 0.5);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 
              0 0 20px rgba(16, 185, 129, 0.2);
}

.title-shop-badge span {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 5px;
  color: #FFFFFF;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  opacity: 0.9;
}

@keyframes shimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}





.title-brand-wrapper {
  position: relative;
  width: fit-content;
  padding: 1.5rem 3rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.title-brand {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #FFFFFF 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  display: block;
}

/* Base style for all corners */
.title-brand-wrapper::before,
.title-brand-wrapper::after,
.title-brand::before,
.title-brand::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border: 4px solid var(--accent);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

/* Top-left */
.title-brand-wrapper::before {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
  animation: cornerPulse 2s infinite alternate;
}

/* Top-right */
.title-brand-wrapper::after {
  top: -10px;
  right: -10px;
  border-left: none;
  border-bottom: none;
}

/* Bottom-left */
.title-brand::before {
  bottom: -10px;
  left: -10px;
  border-right: none;
  border-top: none;
}

/* Bottom-right */
.title-brand::after {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
}

@keyframes cornerPulse {
  from { transform: scale(1); opacity: 0.8; }
  to { transform: scale(1.1); opacity: 1; box-shadow: 0 0 30px var(--accent); }
}

.title-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: #FFFFFF;
  margin-top: 1.5rem;
  letter-spacing: 1px;
  background: linear-gradient(to right, var(--accent), #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  max-width: 650px;
  margin-bottom: 3rem;
  line-height: 1.8;
  border-left: 2px solid var(--accent);
  padding-left: 2rem;
}

.btn-primary {
  background-color: var(--accent);
  color: white;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

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

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-light {
  background-color: white;
  color: var(--primary);
}

.btn-light:hover {
  background-color: #f1f5f9;
  transform: scale(1.05);
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-light {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled .logo-text, 
.navbar.scrolled .nav-links a {
  color: var(--primary);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 800;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: auto;
  border-radius: 8px;
}

.logo-text { color: white; transition: var(--transition); }

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

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: var(--transition);
  font-size: 1rem;
}

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  padding-top: 80px;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.4) 100%);
}

.hero-content {
  max-width: 800px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}



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

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

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

/* Products Section */
.products {
  background-color: var(--bg-slate);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.product-card {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

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

.product-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

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

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow-md);
}

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

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

/* Business Focus */
.business-card {
  display: flex;
  background-color: var(--primary);
  border-radius: 32px;
  overflow: hidden;
  color: white;
  box-shadow: var(--shadow-lg);
}

.business-content {
  flex: 1;
  padding: 5rem;
}

.business-content h2 { margin-bottom: 1.5rem; }
.business-content p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; }

.business-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.business-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.business-list li span {
  color: var(--accent);
  font-weight: 800;
}

.business-image {
  flex: 1;
  min-height: 400px;
}

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

/* Upcoming Section */
.upcoming-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
  border-radius: 32px;
  padding: 5rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.upcoming-banner::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.upcoming-content {
  position: relative;
  z-index: 1;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
}

.upcoming-item {
  display: flex;
  gap: 1.5rem;
}

.item-icon {
  font-size: 2.5rem;
}

.item-text h4 { margin-bottom: 0.5rem; font-size: 1.3rem; }
.item-text p { color: rgba(255, 255, 255, 0.8); margin-bottom: 0; }

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.info-card {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.info-card .icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background-color: var(--bg-slate);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--accent);
}

.info-card h4 { margin-bottom: 0.25rem; }
.info-card p { margin-bottom: 0; color: var(--text-dark); opacity: 0.7; }

.phone-link {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  transition: var(--transition);
}

.phone-link:hover {
  color: var(--accent);
  opacity: 1;
}



.map-container {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.map-placeholder {
  height: 400px;
  background-color: #e2e8f0;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-main);
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}

/* Footer */
footer {
  padding: 4rem 0 0 0; /* No bottom padding here */
  background-color: var(--bg-slate);
  border-top: 1px solid #e2e8f0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 4rem; /* Move bottom padding here */
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.footer-logo-img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.footer-logo .logo-text {
  color: var(--primary);
}

.footer-legal {
  text-align: right;
}

.legal-links {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.legal-links a:hover {
  color: var(--accent);
}

.separator {
  color: rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
  .footer-legal {
    text-align: center;
    width: 100%;
  }
  
  .legal-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.footer-bottom {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #0A192F; /* Deep Navy */
  margin-top: 3rem;
  margin-bottom: 0;
}

.footer-credit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
}

.credit-label {
  text-transform: uppercase;
  font-weight: 500;
}

.credit-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: var(--transition);
}

.credit-brand {
  color: white;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.credit-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  display: inline-block;
  animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
  from { transform: scale(1); box-shadow: 0 0 5px var(--accent); }
  to { transform: scale(1.4); box-shadow: 0 0 15px var(--accent); }
}

.credit-link:hover .credit-brand {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(10, 25, 47, 0.98);
  backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
}

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

.mobile-nav-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  margin-bottom: 3rem;
}

.mobile-nav-links li {
  margin-bottom: 1.5rem;
}

.mobile-nav-links a {
  text-decoration: none;
  color: white;
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 700;
  transition: var(--transition);
}

.mobile-nav-links a:hover {
  color: var(--accent);
}

.mobile-nav-footer {
  width: 100%;
  max-width: 300px;
  display: flex;
  justify-content: center;
}

.mobile-nav-footer .btn {
  width: 100%;
  text-align: center;
}
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: white;
  transition: var(--transition);
}

@media (max-width: 992px) {
  .business-card {
    flex-direction: column;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-links, .nav-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 140px; /* Increased to prevent navbar overlap */
    min-height: auto;
    padding-bottom: 60px;
  }

  .title-brand-wrapper {
    padding: 1rem 1.5rem;
    margin: 0 auto 1rem;
  }

  .title-brand {
    letter-spacing: -1px;
  }

  .title-tagline {
    font-size: 1.4rem;
    margin-top: 1rem;
  }

  .hero-content {
    text-align: center;
  }
  
  .hero-content p {
    padding-left: 0;
    border-left: none;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
  }

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

  .hero-actions .btn {
    width: 100%;
  }
  
  .business-content {
    padding: 3rem 2rem;
  }
  
  .upcoming-banner {
    padding: 3rem 2rem;
  }
}

/* Suggestions Section */
.suggestions {
  background-color: var(--bg-slate);
}

.suggestion-card {
  background: white;
  border-radius: 32px;
  padding: 4rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.suggestion-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.suggestion-header p {
  color: var(--text-dark);
  opacity: 0.7;
  font-size: 1.1rem;
}

.suggestion-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background-color: #f8fafc;
}

.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

@media (max-width: 992px) {
  .suggestion-card {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
    gap: 2rem;
    text-align: center;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
