/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #e6af4b;
  --gold-light: #f0c96e;
  --red: #e83d47;
  --red-dark: #c4323b;
  --dark: #1b1b1b;
  --dark-light: #2a2a2a;
  --dark-lighter: #333;
  --cream: #faf6f0;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-400: #999;
  --gray-600: #666;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ===== HEADER / NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(27, 27, 27, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 0.6rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.2);
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  z-index: 1001;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(27, 27, 27, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    padding: 5rem 2rem 2rem;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.35rem;
    font-weight: 600;
    padding: 1rem 0;
    color: rgba(255,255,255,0.8);
    display: block;
    text-align: center;
  }

  .nav-links a.active {
    color: var(--gold);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
  }

  .nav-overlay.active {
    display: block;
  }
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(27, 27, 27, 0.7) 0%,
    rgba(27, 27, 27, 0.5) 50%,
    rgba(27, 27, 27, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 2rem 1.5rem;
}

.hero h1 {
  margin-bottom: 0.5rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
}

.hero h1 span {
  color: var(--gold);
}

.hero .tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-actions .btn {
  min-width: 200px;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 28px;
  height: 28px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* ===== HERO MENU BUTTONS ===== */
.hero-menu-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.menu-banner-link {
  display: block;
  max-width: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.menu-banner-link:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.menu-banner-link img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-app-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-app-badges a {
  display: block;
  transition: transform var(--transition);
}

.hero-app-badges a:hover {
  transform: scale(1.08);
}

.hero-app-badges img {
  height: 44px;
  width: auto;
}

/* ===== MENU ORDER SECTION ===== */
.menu-order-section {
  padding: 5rem 0;
  background: var(--cream);
}

.menu-order-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.menu-order-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-md);
}

.menu-order-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu-order-card img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-order-apps {
  text-align: center;
}

.menu-order-apps p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

  .menu-banner-link {
    max-width: 300px;
    width: 100%;
  }

  .menu-order-grid {
    grid-template-columns: 1fr;
  }

  .hero-app-badges img {
    height: 38px;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(230, 175, 75, 0.4);
}

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

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

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

.btn-dark:hover {
  background: var(--dark-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== SECTIONS ===== */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray-600);
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  position: relative;
  padding: 10rem 0 4rem;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.page-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27, 27, 27, 0.75);
}

.page-hero h1 {
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb {
  position: relative;
  z-index: 1;
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.page-hero .breadcrumb a {
  color: var(--gold);
}

.page-hero .breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--cream);
}

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

.about-text p {
  margin-bottom: 1.25rem;
  color: var(--gray-600);
  font-size: 1.05rem;
}

.about-text p:first-of-type {
  font-size: 1.15rem;
  color: var(--dark);
  font-weight: 500;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.3;
}

/* About page full */
.about-full {
  padding: 5rem 0;
}

.about-full-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-full-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.about-full-content p:first-child {
  font-size: 1.25rem;
  color: var(--dark);
  font-weight: 500;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ===== CTA CARDS (homepage) ===== */
.cta-section {
  background: var(--white);
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.cta-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.cta-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.cta-card p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.cta-card .btn {
  min-width: 180px;
}

.cta-card-accent {
  background: linear-gradient(135deg, var(--gold), #d4993a);
  color: var(--dark);
}

.cta-card-accent p {
  color: rgba(27, 27, 27, 0.7);
}

/* ===== APP SECTION ===== */
.app-section {
  background: var(--dark);
  color: var(--white);
}

.app-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  text-align: center;
}

.app-text h2 {
  margin-bottom: 0.75rem;
}

.app-text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  max-width: 500px;
}

.app-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.app-badges a {
  display: block;
  transition: transform var(--transition);
}

.app-badges a:hover {
  transform: scale(1.05);
}

.app-badges img {
  height: 48px;
  width: auto;
}

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--gray-100);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27, 27, 27, 0);
  transition: background var(--transition);
}

.gallery-item:hover::after {
  background: rgba(27, 27, 27, 0.2);
}

.gallery-item .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: var(--white);
  font-size: 2rem;
  z-index: 2;
  transition: transform var(--transition);
  opacity: 0.9;
}

.gallery-item:hover .zoom-icon {
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  animation: fadeIn 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== DELIVERY ===== */
.delivery-section {
  padding: 5rem 0;
}

.delivery-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.delivery-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.delivery-image img {
  width: 100%;
  height: auto;
}

.delivery-info {
  text-align: center;
}

.delivery-info h2 {
  margin-bottom: 1rem;
}

.delivery-info p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.delivery-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  justify-content: center;
}

.delivery-badges a img {
  height: 44px;
}

/* ===== CONTACTS ===== */
.contacts-section {
  padding: 5rem 0;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--dark);
  font-size: 1.2rem;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* Social links in contacts */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: block;
  transition: transform var(--transition), opacity var(--transition);
}

.social-link:hover {
  transform: translateY(-3px);
}

.social-link img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.social-link.google-icon img {
  width: auto;
  height: 34px;
  border-radius: 0;
}

/* ===== GOOGLE REVIEWS BANNER ===== */
.reviews-section {
  padding: 4rem 0;
  background: var(--white);
}

.reviews-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.reviews-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.reviews-google-logo {
  height: 40px;
  width: auto;
}

.reviews-stars {
  display: flex;
  gap: 0.25rem;
}

.reviews-text {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  font-weight: 500;
}

.reviews-banner .btn-primary {
  margin-top: 0.5rem;
  min-width: 200px;
}

@media (max-width: 480px) {
  .reviews-banner {
    padding: 2rem 1.5rem;
  }

  .reviews-stars svg {
    width: 22px;
    height: 22px;
  }
}

/* ===== SOCIAL SECTION ===== */
.social-section {
  padding: 4rem 0;
  background: var(--cream);
  color: var(--dark);
}

.social-section .container {
  text-align: center;
}

.social-section h2 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.social-section > .container > p {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.social-banner-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-banner-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: var(--dark);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-md);
}

.social-banner-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.social-banner-item img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.social-banner-item strong {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
}

.social-banner-item span {
  color: var(--gold);
  font-size: 0.9rem;
}

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

  .social-banner-item {
    width: 100%;
    justify-content: center;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  max-width: 300px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  display: block;
  transition: transform var(--transition), opacity var(--transition);
  opacity: 0.85;
}

.footer-social a:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.footer-social img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.footer-social .google-icon img {
  width: auto;
  height: 28px;
  border-radius: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ===== CONTACT FORM (visual only) ===== */
.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition);
  background: var(--gray-100);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--gold);
  font-weight: 600;
}

/* ===== INFO BAR (homepage) ===== */
.info-bar {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0;
}

.info-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.info-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(230, 175, 75, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.info-item h3 {
  font-size: 1rem;
  color: var(--white);
}

.info-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-grid,
  .delivery-content,
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }

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

  .info-bar-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

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

  .page-hero {
    padding: 8rem 0 3rem;
  }

  .about-image img {
    height: 300px;
  }
}

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

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .gallery-item img {
    height: 180px;
  }

  .app-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== UTILITY ===== */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
