:root {
  /* Color Palette - Food Theme */
  --primary-color: #FF6B35;
  --primary-dark: #E55A2B;
  --secondary-color: #F7931E;
  --accent-color: #4ECDC4;
  --dark-bg: #2C3E50;
  --light-bg: #ECF0F1;
  --text-dark: #2C3E50;
  --text-light: #7F8C8D;
  --white: #FFFFFF;
  --success: #27AE60;
  --danger: #E74C3C;
  --warning: #F39C12;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;
}

/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition);
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  font-size: 1rem;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

.grid {
  display: grid;
  gap: 2rem;
}

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Header & Navigation */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

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

.nav-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-icon {
  font-size: 1.3rem;
  color: var(--text-dark);
  position: relative;
  cursor: pointer;
}

.nav-icon:hover {
  color: var(--primary-color);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.95), rgba(247, 147, 30, 0.95)),
    url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1200') center/cover;
  color: var(--white);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

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

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.card-text {
  color: var(--text-light);
  margin-bottom: 1rem;
  flex: 1;
}

.card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--light-bg);
}

/* Menu Category Filter */
.category-filter {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.category-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--light-bg);
  font-weight: 600;
}

.category-btn:hover,
.category-btn.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* Search Bar */
.search-bar {
  max-width: 600px;
  margin: 0 auto 3rem;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 16px 50px 16px 20px;
  border: 2px solid var(--light-bg);
  border-radius: var(--radius-full);
  font-size: 1rem;
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1.2rem;
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 60px 0 20px;
}

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

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-section p {
  opacity: 0.8;
  line-height: 1.8;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-bg);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

/* Alerts */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.alert-success {
  background: rgba(39, 174, 96, 0.1);
  color: var(--success);
  border-left: 4px solid var(--success);
}

.alert-error {
  background: rgba(231, 76, 60, 0.1);
  color: var(--danger);
  border-left: 4px solid var(--danger);
}

.alert-warning {
  background: rgba(243, 156, 18, 0.1);
  color: var(--warning);
  border-left: 4px solid var(--warning);
}

/* Loading Spinner */
.spinner {
  border: 3px solid var(--light-bg);
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 2rem auto;
}

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

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: fadeInUp 0.3s ease;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--light-bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.modal-close {
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--light-bg);
  color: var(--text-dark);
}

.modal-body {
  padding: 1.5rem;
}

/* ============================================
   RESPONSIVE DESIGN - Mobile First Approach
   ============================================ */

/* Extra Small Devices (phones, 320px and up) */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  /* Header & Navigation */
  .header {
    padding: 0 10px;
  }

  .nav {
    padding: 0.75rem 0;
  }

  .logo img {
    height: 35px !important;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1rem;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-bg);
  }

  .mobile-menu-toggle {
    display: block;
    font-size: 1.3rem;
  }

  .nav-icons {
    gap: 1rem;
  }

  .nav-icon {
    font-size: 1.1rem;
  }

  /* Hero Section */
  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 20px;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 14px 20px;
  }

  /* Buttons */
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    display: block;
  }

  /* Cards */
  .card {
    margin-bottom: 1rem;
  }

  .card-img {
    height: 180px;
  }

  .card-body {
    padding: 1rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-text {
    font-size: 0.9rem;
  }

  .card-price {
    font-size: 1.25rem;
  }

  /* Grids */
  .grid {
    gap: 1rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  /* Category Filter */
  .category-filter {
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0 10px;
  }

  .category-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    flex: 1 1 calc(50% - 0.5rem);
    text-align: center;
  }

  /* Search Bar */
  .search-bar {
    margin: 0 0 2rem 0;
    padding: 0 10px;
  }

  .search-input {
    padding: 12px 45px 12px 15px;
    font-size: 0.95rem;
  }

  /* Footer */
  .footer {
    padding: 40px 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center;
  }

  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

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

  .newsletter-form {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .newsletter-input {
    width: 100%;
  }

  /* Forms */
  .form-group {
    margin-bottom: 1rem;
  }

  .form-input,
  .form-textarea,
  .form-select {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  /* Modal */
  .modal {
    padding: 15px;
  }

  .modal-content {
    max-height: 85vh;
    border-radius: var(--radius-md);
  }

  .modal-header {
    padding: 1rem;
  }

  .modal-title {
    font-size: 1.2rem;
  }

  .modal-body {
    padding: 1rem;
  }

  /* FAQ Section */
  .faq-item {
    padding: 1rem !important;
  }

  .faq-item h3 {
    font-size: 1rem !important;
  }
}

/* Small Devices (larger phones, 481px to 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  /* Navigation */
  .nav-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-bg);
  }

  /* Hero */
  .hero {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

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

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Cards */
  .card-img {
    height: 200px;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }
}

/* Medium Devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    padding: 0 30px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  /* Navigation */
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-md);
    gap: 0.5rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-link {
    padding: 0.75rem 0;
  }

  /* Hero */
  .hero {
    padding: 100px 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.15rem;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 1rem;
  }

  /* Grids */
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer */
  .footer-content {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem !important;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    gap: 2rem;
  }

  .nav-link {
    padding: 0;
    border-bottom: none;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }

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

  .section-title {
    font-size: 2.5rem;
  }
}

/* ============================================
   TOUCH & ACCESSIBILITY ENHANCEMENTS
   ============================================ */

/* Touch-friendly tap targets */
@media (hover: none) and (pointer: coarse) {

  .btn,
  .nav-link,
  .category-btn,
  .nav-icon {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .card:hover {
    transform: none;
  }

  .card:active {
    transform: scale(0.98);
  }
}

/* Landscape mode for phones */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .section {
    padding: 30px 0;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

  .card-img,
  .hero {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Print styles */
@media print {

  .header,
  .footer,
  .hero-buttons,
  .nav-icons,
  .mobile-menu-toggle {
    display: none !important;
  }

  .section {
    padding: 20px 0;
  }

  .card {
    break-inside: avoid;
  }
}

/* ============================================
   CONTACT PAGE RESPONSIVE STYLES
   ============================================ */

/* Contact Hero */
.contact-hero {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  padding: 80px 0 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-hero p {
  font-size: 1.3rem;
  opacity: 0.95;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

/* Contact Cards */
.contact-form-card,
.contact-info-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Info Items */
.info-item {
  background: linear-gradient(135deg, #FFF5F2 0%, #FFF8F5 100%);
  padding: 1.8rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.info-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.info-content h3 {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.info-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

/* Hours Card */
.hours-card {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 2rem;
  border-radius: 16px;
  margin-top: 1.5rem;
}

.hours-card h3 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-row:last-child {
  border-bottom: none;
}

/* Social Links Contact */
.social-links-contact {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link-contact {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

/* Map Placeholder */
.map-placeholder {
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  height: 450px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--text-light);
  margin-top: 3rem;
}

/* Contact Responsive - Mobile */
@media (max-width: 480px) {
  .contact-hero {
    padding: 50px 0 40px;
  }

  .contact-hero h1 {
    font-size: 1.75rem;
    padding: 0 15px;
  }

  .contact-hero p {
    font-size: 1rem;
    padding: 0 15px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: -20px;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .info-item {
    padding: 1.25rem;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .info-icon {
    font-size: 2rem;
    min-width: 50px;
    height: 50px;
    margin: 0 auto;
  }

  .hours-card {
    padding: 1.5rem;
  }

  .hours-card h3 {
    font-size: 1.1rem;
  }

  .hours-row {
    flex-direction: column;
    text-align: center;
    gap: 0.3rem;
  }

  .social-link-contact {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .map-placeholder {
    height: 250px;
    margin-top: 2rem;
    border-radius: 16px;
  }

  .map-placeholder i {
    font-size: 3rem;
  }
}

/* Contact Responsive - Small Devices */
@media (min-width: 481px) and (max-width: 767px) {
  .contact-hero {
    padding: 60px 0 50px;
  }

  .contact-hero h1 {
    font-size: 2.25rem;
  }

  .contact-hero p {
    font-size: 1.1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: -30px;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 2rem;
  }

  .map-placeholder {
    height: 320px;
  }
}

/* Contact Responsive - Tablets */
@media (min-width: 768px) and (max-width: 991px) {
  .contact-hero h1 {
    font-size: 2.75rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 2.5rem;
  }

  .map-placeholder {
    height: 380px;
  }
}

/* Contact Responsive - Desktop */
@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .info-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
  }
}

/* ============================================
   FOOTER COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* Footer Mobile */
@media (max-width: 480px) {
  .footer {
    padding: 40px 0 20px !important;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section h3 {
    font-size: 1.1rem !important;
    margin-bottom: 1rem !important;
  }

  .footer-section p {
    font-size: 0.95rem;
  }

  .footer-section ul {
    padding: 0 !important;
  }

  .footer-section ul li {
    padding: 0.3rem 0;
  }

  .social-links {
    justify-content: center !important;
    gap: 0.6rem !important;
  }

  .social-link {
    width: 38px !important;
    height: 38px !important;
  }

  .newsletter-form {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .newsletter-input {
    width: 100% !important;
    padding: 12px !important;
  }

  .newsletter-form .btn {
    width: 100% !important;
    padding: 12px !important;
  }

  .footer-bottom {
    padding-top: 1.5rem !important;
  }

  .footer-bottom p {
    font-size: 0.85rem !important;
  }
}

/* Footer Small Devices */
@media (min-width: 481px) and (max-width: 767px) {
  .footer {
    padding: 50px 0 20px !important;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }

  .footer-section h3 {
    font-size: 1.15rem !important;
  }

  .social-links {
    justify-content: flex-start !important;
  }

  .newsletter-form {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
}

/* Footer Tablets */
@media (min-width: 768px) and (max-width: 991px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem !important;
  }

  .footer-section h3 {
    font-size: 1.2rem !important;
  }
}

/* Footer Desktop */
@media (min-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 3rem !important;
  }
}