/* ==========================================================================
   SHAMS AL BUTEENA CAFETERIA - WARM EDITORIAL DESIGN SYSTEM
   Authentic Malabar Kerala Dining • Sharjah, United Arab Emirates
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Amiri:wght@700&display=swap');

:root {
  /* Palette: Warm Editorial Malabar */
  --bg-main: #FAF7F2;
  --bg-card: #FFFFFF;
  --bg-section: #F3EFEA;
  --bg-dark: #1C1917;

  --text-main: #1C1917;
  --text-muted: #57534E;
  --text-light: #A8A29E;

  --accent-terracotta: #C2410C;
  --accent-terracotta-hover: #9A3412;
  --accent-green: #064E3B;
  --accent-gold: #D97706;
  
  --border-light: rgba(28, 25, 23, 0.08);
  --border-medium: rgba(28, 25, 23, 0.15);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-arabic: 'Amiri', serif;

  --shadow-subtle: 0 4px 20px rgba(28, 25, 23, 0.04);
  --shadow-elevated: 0 12px 32px rgba(28, 25, 23, 0.08);
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & BASIC STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

/* --- UTILITY CLASSES --- */
.section {
  padding: 100px 5%;
  max-width: 1380px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-terracotta);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
}

.section-header {
  margin-bottom: 60px;
}

.arabic-text {
  font-family: var(--font-arabic);
  direction: rtl;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: var(--accent-terracotta);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--accent-terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194, 65, 12, 0.25);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-medium);
}

.btn-outline:hover {
  background-color: var(--text-main);
  color: #FFFFFF;
  border-color: var(--text-main);
}

/* --- NAVIGATION BAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 5%;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 16px 5%;
  background: rgba(250, 247, 242, 0.98);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-brand-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

.nav-brand-title .arabic-text {
  font-size: 1.4rem;
  color: var(--accent-terracotta);
  font-weight: 700;
}

.nav-brand-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--accent-terracotta);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
  padding: 4px;
}

/* --- HERO SECTION --- */
.hero {
  min-height: 92vh;
  padding: 160px 5% 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  max-width: 1380px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: #F2EFE9;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-main);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title .italic-text {
  font-style: italic;
  font-weight: 600;
  color: var(--accent-terracotta);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
  width: 100%;
}

.stat-item h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  width: 100%;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.hero-image {
  width: 100%;
  height: 540px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.03);
}

/* --- ABOUT / HERITAGE SECTION --- */
.about-section {
  background-color: var(--bg-section);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.about-img-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

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

.about-text h3 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
  color: var(--text-main);
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.feature-box {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.feature-box:hover {
  border-color: var(--accent-terracotta);
  box-shadow: var(--shadow-subtle);
}

.feature-box h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- SPECIALTIES SECTION --- */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.specialty-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.specialty-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  border-color: var(--border-medium);
}

.specialty-img-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
  background-color: var(--bg-section);
}

.specialty-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.specialty-card:hover .specialty-img {
  transform: scale(1.05);
}

.specialty-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  gap: 24px;
}

.specialty-title-row {
  margin-bottom: 10px;
}

.specialty-title-row h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-main);
}

.specialty-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.add-to-cart-btn {
  background: transparent;
  color: var(--accent-terracotta);
  border: 1px solid var(--accent-terracotta);
  padding: 12px 20px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
  text-align: center;
}

.add-to-cart-btn:hover {
  background: var(--accent-terracotta);
  color: #FFFFFF;
}

/* --- INTERACTIVE MENU SECTION --- */
.menu-section {
  background-color: var(--bg-section);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.menu-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.search-box {
  position: relative;
  max-width: 460px;
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--text-muted);
}

.search-input {
  width: 100%;
  padding: 14px 18px 14px 46px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent-terracotta);
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.1);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-btn {
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  border-color: var(--border-medium);
  color: var(--text-main);
}

.tab-btn.active {
  background-color: var(--text-main);
  color: #FFFFFF;
  border-color: var(--text-main);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.menu-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition-smooth);
}

.menu-item-card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-subtle);
  transform: translateY(-2px);
}

.menu-item-header {
  margin-bottom: 6px;
}

.menu-item-header h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.menu-item-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex-grow: 1;
}

/* --- REGISTRATION & COMPLIANCE SECTION --- */
.compliance-section {
  background-color: var(--bg-main);
}

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

.compliance-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
  transition: var(--transition-smooth);
}

.compliance-box:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-subtle);
}

.compliance-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.compliance-box h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.compliance-box p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- LOCATION & CONTACT SECTION --- */
.location-section {
  background-color: var(--bg-section);
  border-top: 1px solid var(--border-light);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  font-size: 1.6rem;
}

.info-content h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.info-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.map-container {
  width: 100%;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-elevated);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- FOOTER --- */
.footer {
  background-color: var(--bg-dark);
  color: #FFFFFF;
  padding: 80px 5% 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1380px;
  margin: 0 auto 60px;
}

.footer-brand p {
  font-size: 0.92rem;
  color: #D6D3D1;
  margin-top: 16px;
  max-width: 340px;
  line-height: 1.6;
}

.footer-brand .nav-brand-title {
  color: #FFFFFF;
}

.footer-brand .arabic-text {
  color: #FB923C;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-links li a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  max-width: 1380px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #78716C;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  cursor: pointer;
  transition: var(--transition-smooth);
}

.footer-legal-links a:hover {
  color: #D6D3D1;
}

/* --- FLOATING WHATSAPP BUTTON --- */
.floating-cart-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #FFFFFF;
  border: none;
  padding: 16px 26px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  z-index: 100;
  transition: var(--transition-smooth);
}

.floating-cart-btn:hover {
  transform: translateY(-3px) scale(1.02);
  background-color: #1FAF54;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

.floating-cart-btn.hidden {
  display: none;
}

.cart-badge {
  background-color: #FFFFFF;
  color: #1FAF54;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 50px;
}

/* --- CART DRAWER --- */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 25, 23, 0.5);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background-color: var(--bg-card);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.cart-drawer.open {
  right: 0;
}

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

.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.close-cart-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
}

.cart-items-container {
  padding: 24px;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty-msg {
  text-align: center;
  margin: auto 0;
  color: var(--text-muted);
}

.cart-item {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cart-item-info h5 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border: 1px solid var(--border-medium);
  background: var(--bg-card);
  color: var(--text-main);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.qty-btn:hover {
  background: var(--text-main);
  color: #FFFFFF;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border-light);
  background-color: var(--bg-section);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-summary-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

.send-whatsapp-order-btn {
  background-color: #25D366;
  color: #FFFFFF;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
  text-align: center;
}

.send-whatsapp-order-btn:hover {
  background-color: #1FAF54;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

/* --- MODAL DIALOGS --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 25, 23, 0.6);
  backdrop-filter: blur(4px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-card);
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-elevated);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.96);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-card {
  transform: scale(1);
}

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

.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-terracotta);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  line-height: 1.7;
}

.modal-body h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 16px 0 8px;
}

.modal-body h4:first-child {
  margin-top: 0;
}

.modal-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
    gap: 40px;
  }

  .hero-image {
    height: 420px;
  }

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

  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 5%;
  }

  .navbar {
    padding: 18px 5%;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    flex-direction: column;
    padding: 30px 5%;
    gap: 20px;
    border-bottom: 1px solid var(--border-medium);
    box-shadow: var(--shadow-elevated);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease;
  }

  .nav-links.mobile-open {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

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

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

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