:root {
  /* Provided brand palette */
  --primary-color: #E31E24;
  --secondary-color: #000000;
  --text-color: #333333;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --error-color: #E31E24;
  --success-color: #28a745;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Internal tokens mapped to the palette */
  --bg: var(--white);
  --panel: var(--white);
  --text: var(--text-color);
  --muted: #666a73;
  --brand: var(--primary-color);
  --brand-700: #c0181d;
  --accent: var(--primary-color);
  --ring: rgba(227, 30, 36, 0.25);
  --card: var(--white);
  --success: var(--success-color);
  --border: #e5e7eb;
  --shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  padding-top: 70px; /* space for fixed header */
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:active { color: inherit; }
a:focus { outline: none; }
a:focus-visible { outline: 2px dashed var(--brand); outline-offset: 3px; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 16px; }
.section { padding: 30px 0; }
.section h2 { font-size: 32px; margin: 0 0 24px; letter-spacing: 0.3px; }
.lead { color: var(--muted); margin-top: 50px;}

/* Intro Animation */
.intro-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E31E24 0%, #ff4757 50%, #E31E24 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: introFadeOut 0.8s ease-in-out 4s forwards;
}

.intro-content {
  text-align: center;
  color: white;
  animation: introSlideUp 1.5s ease-out 0.3s both;
}

.intro-logo {
  margin-bottom: 30px;
  animation: logoRotate 2.5s ease-in-out 0.5s both;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-logo img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(255, 255, 255, 0.1);
  border: 6px solid rgba(255, 255, 255, 0.3);
  background: white;
  padding: 10px;
  animation: logoGlow 2s ease-in-out 0.8s infinite alternate;
}

@keyframes logoGlow {
  0% {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 12px rgba(255, 255, 255, 0.2);
  }
}

.intro-text h1 {
  font-size: 48px;
  font-weight: 900;
  margin: 0 0 15px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  animation: textGlow 2s ease-in-out 1s infinite alternate;
}

.intro-text p {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 40px;
  opacity: 0.9;
  animation: textFadeIn 1s ease-out 1.2s both;
}

.intro-loader {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
  animation: loaderFadeIn 0.8s ease-out 1.5s both;
}

.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8));
  border-radius: 2px;
  animation: loaderProgress 1s ease-out 1.8s both;
}

@keyframes introFadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
    visibility: hidden;
  }
}

@keyframes introSlideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoRotate {
  0% {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
  }
  30% {
    opacity: 0.6;
    transform: rotate(-120deg) scale(0.7);
  }
  60% {
    opacity: 0.8;
    transform: rotate(-60deg) scale(0.85);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes textGlow {
  0% {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  100% {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.5);
  }
}

@keyframes textFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 0.9;
    transform: translateY(0);
  }
}

@keyframes loaderFadeIn {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes loaderProgress {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Hide intro after animation */
.intro-animation.hidden {
  display: none;
}

/* Header */
.site-header { 
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 50; 
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); 
  border-bottom: 1px solid rgba(227, 30, 36, 0.1); 
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); 
  transition: all 0.3s ease;
}
.nav-wrapper { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  height: 70px; 
  padding: 0 20px;
}
.brand { 
  display: inline-flex; 
  align-items: center; 
  gap: 14px; 
  font-weight: 800; 
  font-size: 20px;
  color: var(--brand);
  transition: all 0.3s ease;
}
.brand:hover {
  transform: scale(1.02);
}
.logo { 
  width: 42px; 
  height: 42px; 
  object-fit: cover; 
  border-radius: 12px; 
  transition: all 0.3s ease;
}
.logo:hover {
  transform: rotate(5deg) scale(1.05);
}
.logo.small { width: 32px; height: 32px; }

.site-nav ul { list-style: none; display: flex; gap: 12px; margin: 0; padding: 0; }
.site-nav a { 
  display: inline-flex; 
  align-items: center; 
  padding: 10px 16px; 
  border-radius: 12px; 
  color: var(--text); 
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
  position: relative;
  overflow: hidden;
}
.site-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.1), transparent);
  transition: left 0.5s ease;
}
.site-nav a:hover::before {
  left: 100%;
}
.site-nav a:hover { 
  background: rgba(227, 30, 36, 0.1); 
  color: var(--brand); 
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(227, 30, 36, 0.2);
}
.site-nav .btn-primary { 
  background: linear-gradient(135deg, var(--brand) 0%, #ff4757 100%); 
  color: white; 
  box-shadow: 0 4px 16px rgba(227, 30, 36, 0.3);
  border: none;
}
.site-nav .btn-primary:hover { 
  background: linear-gradient(135deg, var(--brand-700) 0%, #ff3742 100%); 
  color: white; 
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}

.nav-toggle { 
  display: none; 
  width: 44px; 
  height: 44px; 
  border: 2px solid var(--brand); 
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); 
  border-radius: 12px; 
  color: var(--brand); 
  align-items: center; 
  justify-content: center; 
  gap: 4px; 
  flex-direction: column; 
  box-shadow: 0 4px 16px rgba(227, 30, 36, 0.2); 
  transition: all 0.3s ease;
  cursor: pointer;
}
.nav-toggle:hover {
  background: linear-gradient(135deg, var(--brand) 0%, #ff4757 100%);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(227, 30, 36, 0.3);
}
.nav-toggle .bar { 
  width: 22px; 
  height: 3px; 
  background: currentColor; 
  border-radius: 3px; 
  transition: all 0.3s ease;
}

/* Nav toggle animation when active */
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero { 
  padding: 100px 0 100px; 
  min-height: 80vh; 
  display: flex; 
  align-items: center; 
  background: white;
  position: relative;
  overflow: hidden;
  margin-bottom: 150px ;
  margin-top: 50px ;
  animation: heroFadeIn 0.6s ease-out;
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23E31E24" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23E31E24" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23E31E24" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%23E31E24" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="%23E31E24" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}
.hero-content { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 40px; 
  align-items: center; 
  text-align: center; 
  justify-items: center; 
  width: 100%; 
  position: relative;
  z-index: 1;
}
.hero h1 { 
  font-size: 84px; 
  line-height: 1.1; 
  margin: 0 0 24px; 
  color: var(--brand); 
  font-weight: 900;
  text-shadow: 0 4px 20px rgba(227, 30, 36, 0.1);
  letter-spacing: -2px;
  animation: titleSlideIn 0.8s ease-out 0.1s both;
}

@keyframes titleSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero p { 
  color: var(--text); 
  margin: 0 0 48px; 
  font-size: 32px; 
  font-weight: 600;
  max-width: 600px;
  line-height: 1.4;
  animation: subtitleFadeIn 0.8s ease-out 0.2s both;
}

@keyframes subtitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-cta { 
  display: flex; 
  gap: 24px; 
  justify-content: center; 
  flex-wrap: wrap; 
  animation: buttonsSlideUp 0.8s ease-out 0.3s both;
}

@keyframes buttonsSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-primary, .btn-secondary { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  padding: 16px 24px; 
  border-radius: 16px; 
  font-weight: 700; 
  border: 2px solid transparent; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn-primary { 
  background: linear-gradient(135deg, var(--brand) 0%, #ff4757 100%); 
  color: white;
  box-shadow: 0 8px 32px rgba(227, 30, 36, 0.3);
}
.btn-primary:hover { 
  background: linear-gradient(135deg, var(--brand-700) 0%, #ff3742 100%); 
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(227, 30, 36, 0.4);
}
.btn-secondary { 
  background: rgba(255, 255, 255, 0.9); 
  color: var(--brand); 
  border-color: var(--brand);
  backdrop-filter: blur(10px);
}
.btn-lg { 
  padding: 20px 36px; 
  font-size: 22px; 
  box-shadow: 0 12px 40px rgba(227, 30, 36, 0.25);
  border-radius: 20px;
}
.btn-outline { 
  background: rgba(255, 255, 255, 0.9); 
  color: var(--brand); 
  border-color: var(--brand); 
  box-shadow: 0 8px 24px rgba(227, 30, 36, 0.15);
}
.btn-secondary:hover { 
  background: rgba(255, 255, 255, 1); 
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(227, 30, 36, 0.2);
}

.hero-media { display: none; }

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

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  animation: servicesFadeIn 0.8s ease-out;
}

@keyframes servicesFadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  animation: cardSlideIn 0.6s ease-out;
  animation-fill-mode: both;
}

.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.15s; }

@keyframes cardSlideIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), #ff6b6b);
  border-radius: 20px 20px 0 0;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 15px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 20px;
  font-size: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--brand);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn:hover {
  background: var(--brand-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);
}

.order-btn {
  width: 100%;
  margin-top: 10px;
}

.delivery-card {
  background: var(--white);
}

/* Legacy card styles for compatibility */
.card { background: var(--card); border: 1px solid var(--border); padding: 20px; border-radius: 14px; box-shadow: var(--shadow); }
.card h3 { margin: 0 0 8px; }
.card p { color: var(--muted); margin: 0; }

/* About */
.section-title {
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 60px;
  position: relative;
  animation: titleFadeIn 0.8s ease-out;
}

@keyframes titleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--brand);
  border-radius: 2px;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 4px;
}

.about-text {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  margin-top: 50px;
  animation: aboutSlideUp 0.8s ease-out 0.2s both;
}

@keyframes aboutSlideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand), #ff6b6b);
  border-radius: 20px 20px 0 0;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 20px 0;
  font-weight: 400;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text p strong {
  color: var(--brand);
  font-weight: 700;
}

.about .about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px; align-items: center; }
.checks { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 8px; }
.checks li { position: relative; padding-left: 24px; }
.checks li::before { content: "✓"; position: absolute; left: 0; color: var(--success); }

/* Contact */
.contact .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form { 
  background: var(--panel); 
  border: 1px solid var(--border); 
  padding: 20px; 
  border-radius: 14px; 
  box-shadow: var(--shadow);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--brand);
  border-radius: 14px 14px 0 0;
}
.form-row { display: grid; gap: 6px; margin-bottom: 14px; }
label { font-weight: 600; }
input, textarea { width: 100%; padding: 12px 12px; border-radius: 10px; border: 1px solid var(--border); background: #ffffff; color: var(--text); outline: none; }
input:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--ring); }
.submit-btn { margin-top: 6px; width: 100%; color: white; box-shadow: 0 4px 8px rgba(227, 30, 37, 0.521);}
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Global Alert Styles */
.global-alert {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9999;
  max-width: 400px;
  width: 400px;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.global-alert.show {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .global-alert {
    top: 70px;
    right: 10px;
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
}

.global-alert .alert {
  margin: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Alert Styles */
.alert {
  margin: 0;
  padding: 18px 22px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-left: 5px solid;
}

.alert-success {
  background: rgba(255, 255, 255, 0.95);
  color: #155724;
  border-left-color: #28a745;
}

.alert-error {
  background: rgba(255, 255, 255, 0.95);
  color: #721c24;
  border-left-color: #dc3545;
}

.alert-icon {
  font-size: 20px;
  font-weight: bold;
  flex-shrink: 0;
}

.alert-success .alert-icon {
  color: #28a745;
}

.alert-error .alert-icon {
  color: #dc3545;
}

.alert-content {
  flex: 1;
}

.alert-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.alert-close:hover {
  opacity: 1;
}

/* Animations removed */
.contact-info { display: grid; gap: 14px; }
.contact-info a { color: var(--brand); }
.info-card { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; padding: 16px; border-radius: 14px; border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow); cursor: pointer; }
.info-card:hover { border-color: var(--brand); }
.info-icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 12px; background: #fdecee; color: var(--brand); font-size: 24px; }
.info-text { display: grid; gap: 4px; }
.info-title { font-weight: 700; }
.info-sub { color: var(--muted); font-size: 14px; }

/* Footer */
/* New footer */
.footer { background: var(--secondary-color); color: var(--white); border-top: 1px solid rgba(255,255,255,0.08); }
.footer-content { padding: 20px 12px; }
.footer-info { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; grid-template-areas: 'logo contact' 'social contact'; }
.footer-logo { margin-bottom: 10px; display: flex; align-items: center; gap: 8px; grid-area: logo; }
.footer-social { grid-area: social; }
.footer-contact { grid-area: contact; }
.footer-logo img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; }
.footer-description { font-size: 18px; margin: 0; }
.footer-contact h3, .footer-social h3 { margin: 0 0 8px; font-size: 16px; }
.contact-item { display: flex; gap: 10px; background: rgba(255,255,255,0.04); padding: 8px 10px; border-radius: 10px; transform: translateY(0); transition: var(--transition); }
.contact-item:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.contact-item + .contact-item { margin-top: 8px; }
.contact-item i { color: var(--brand); font-size: 16px; width: 32px; height: 32px; border-radius: 8px; display: inline-grid; place-items: center; background: rgba(255, 255, 255, 0.07); transition: var(--transition); }
.contact-item:hover i { background: rgba(255, 255, 255, 0.07); }
.contact-details h4 { margin: 0; font-size: 13px; color: #e5e7eb; }
.contact-details a { color: rgb(167, 165, 165); font-size: 14px; }
.contact-details p {color: gray; }
.social-links { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.social-link { display: inline-flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 10px; background: rgba(255,255,255,0.04); color: #fff; font-size: 14px; transform: translateY(0); transition: var(--transition); }
.social-link:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.social-link i { width: 28px; height: 28px; border-radius: 8px; display: inline-grid; place-items: center; color: var(--brand); background: rgba(255, 255, 255, 0.07); }

.footer-logo { justify-content: center; border-bottom: 2px solid var(--brand); padding-bottom: 15px; }

/* Neutral icon style (no platform colors) */

/* Icon bounce animation removed */
.footer-bottom { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 10px 12px; border-top: 1px solid rgba(255,255,255,0.08); color: #e5e7eb; font-size: 16px; text-align: center; }
.dasturchi-link { color: var(--brand); }
.back-to-top { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 10px; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: #fff; }
.back-to-top:hover { background: rgba(255,255,255,0.12); }

/* Responsive */
@media (max-width: 1024px) {
  .hero { padding: 120px 0 80px; min-height: 70vh; }
  .hero h1 { font-size: 64px; }
  .hero p { font-size: 28px; }
  .hero-cta { gap: 20px; }
  .about .about-grid { grid-template-columns: 1fr; }
  .services-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .service-card { padding: 25px 15px; }
  .service-card img { width: 60px; height: 60px; margin-bottom: 15px; }
  .service-card h3 { font-size: 18px; }
  .service-card p { font-size: 14px; }
  .footer-bottom { font-size: 14px; }
}

@media (min-width: 1025px) {
  /* Desktop footer sizing and spacing */
  .footer-content { padding: 36px 16px; }
  .footer-logo img { width: 64px; height: 64px; border-radius: 12px; }
  .footer-description { font-size: 22px; }
  .social-links { gap: 10px; }
  .social-link { padding: 10px 12px; }
  .social-link i { width: 32px; height: 32px; }
}

@media (max-width: 720px) {
  .section { padding: 30px 0; }
  .hero { padding: 100px 0 60px; min-height: 60vh; }
  .hero h1 { font-size: 48px; margin: 0 0 20px; }
  .hero p { font-size: 22px; margin: 0 0 40px; }
  .hero-cta { flex-direction: column; gap: 16px; align-items: center; }
  .btn-lg { padding: 18px 28px; font-size: 20px; width: 100%; max-width: 320px; }
  .site-nav { 
    position: fixed; 
    inset: 70px 12px auto 12px; 
    background: #ffffff; 
    border: 1px solid var(--border); 
    border-radius: 14px; 
    padding: 12px; 
    transform: scale(0.95) translateY(-20px); 
    opacity: 0; 
    pointer-events: none; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); 
  }
  .site-nav ul { flex-direction: column; gap: 4px; }
  .site-nav a { 
    padding: 12px; 
    border-radius: 10px; 
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.3s ease;
  }
  .site-nav a:hover { background: rgba(227, 30, 36, 0.1); }
  .site-nav.open { 
    opacity: 1; 
    transform: scale(1) translateY(0); 
    pointer-events: auto; 
  }
  .site-nav.open a {
    transform: translateX(0);
    opacity: 1;
  }
  .site-nav.open a:nth-child(1) { transition-delay: 0.1s; }
  .site-nav.open a:nth-child(2) { transition-delay: 0.2s; }
  .site-nav.open a:nth-child(3) { transition-delay: 0.3s; }
  .site-nav.open a:nth-child(4) { transition-delay: 0.4s; }
  .nav-toggle { display: inline-flex; }
  .services-container { grid-template-columns: 1fr; gap: 20px; }
  .service-card { padding: 20px 15px; }
  .service-card img { width: 50px; height: 50px; margin-bottom: 12px; }
  .service-card h3 { font-size: 16px; }
  .service-card p { font-size: 13px; }
  .contact .contact-grid { 
    grid-template-columns: 1fr; 
    display: flex;
    flex-direction: column;
  }
  .contact .contact-info { 
    order: 1; 
  }
  .contact .contact-form { 
    order: 2; 
  }
  .footer-info { grid-template-columns: 1fr; grid-template-areas: 'logo' 'social' 'contact'; }
  .footer-bottom { font-size: 13px; }
  .footer-logo { justify-content: center; }
  .footer-description { text-align: center; }
  .contact-details p { margin-top: 5px; margin-bottom: 3px; color: gray; }
  .section-title { font-size: 36px; margin-bottom: 40px; }
  .about-text { padding: 30px 10px; }
  .about-text p { font-size: 16px; margin-bottom: 16px; }
  }

/* Animations removed per request */

/* Modal styles */
.modal { 
  position: fixed; 
  inset: 0; 
  display: none; 
  align-items: center; 
  justify-content: center; 
  z-index: 1000; 
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}
.modal.open { 
  display: flex; 
}
.modal-backdrop { 
  position: absolute; 
  inset: 0; 
  background: rgba(0,0,0,0.6); 
}
.modal-dialog { 
  position: relative; 
  width: min(600px, 95%); 
  max-height: 85vh;
  background: #fff; 
  border-radius: 16px; 
  border: 1px solid var(--border); 
  box-shadow: 0 20px 40px rgba(16,24,40,0.2), 0 0 0 1px rgba(255,255,255,0.1); 
  overflow: hidden; 
}
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 16px; border-bottom: 1px solid var(--border); }
.modal-title { margin: 0; }
.modal-body { padding: 16px; color: var(--text); white-space: pre-line; }
.modal-footer { padding: 12px 16px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; }
.modal-close { background: #fff; border: 1px solid var(--border); border-radius: 10px; width: 36px; height: 36px; cursor: pointer; }

/* Modal animations removed */

/* Custom modals */
.modal .modal-content { 
  position: relative; 
  width: min(600px, 95%); 
  max-height: 85vh;
  background: #fff; 
  border-radius: 16px; 
  border: 1px solid var(--border); 
  box-shadow: 0 20px 40px rgba(16,24,40,0.2), 0 0 0 1px rgba(255,255,255,0.1); 
  padding: 30px; 
  overflow-y: auto;
}
.modal .close-btn { 
  position: absolute; 
  top: 12px; 
  right: 12px; 
  font-size: 24px; 
  cursor: pointer; 
  background: transparent; 
  border: none; 
  color: var(--brand); 
  width: 32px; 
  height: 32px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transition: var(--transition);
  font-weight: bold;
}
.modal .close-btn:hover { 
  color: var(--brand-700); 
  transform: scale(1.1); 
}

.modal h2 {
  color: var(--brand);
  border-bottom: 3px solid var(--brand);
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
}
.phone-container, .hours-container { display: grid; gap: 10px; }
.phone-item { display: flex; gap: 12px; background: rgba(255, 0, 0, 0.029); padding: 16px; border-radius: 12px; border: 1px solid #f8bbd9; }
.phone-item i { color: var(--brand); width: 32px; height: 32px; display: inline-grid; place-items: center; background: rgba(227,30,36,0.15); border-radius: 8px; font-size: 16px; }
.phone-details h4 { margin: 0 0 6px; font-size: 14px; font-weight: 700; color: #333; }
.phone-details a { color: var(--brand); font-size: 14px; display: block; margin-bottom: 2px; }
.map-container { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }

.map-address { 
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  margin-top: 12px;
}

.address-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.address-line i {
  color: #ea4335;
  font-size: 16px;
}

.address-line span {
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

.map-link { 
  background: #ea4335;
  color: white;
  text-decoration: none; 
  padding: 10px 16px; 
  border-radius: 8px; 
  transition: var(--transition);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  box-shadow: 0 2px 4px rgba(234, 67, 53, 0.3);
}

.map-link:hover { 
  background: #d33b2c; 
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(234, 67, 53, 0.4);
}

.map-link i {
  font-size: 12px;
}
.day-schedule { display: flex; align-items: center; justify-content: space-between; padding: 8px; background: var(--light-gray); border-radius: 10px; }
.day-schedule .day { font-weight: 700; font-size: 14px; }
.day-schedule .time { color: var(--success); font-weight: 700; font-size: 14px; }

/* Floating call button */
.floating-call { 
  position: fixed; 
  right: 30px; 
  bottom: 58px; 
  width: 56px; 
  height: 56px; 
  border-radius: 50%; 
  background: var(--brand); 
  color: #fff; 
  display: inline-grid; 
  place-items: center; 
  box-shadow: 0 12px 24px rgba(227,30,36,0.35); 
  z-index: 60; 
  animation: floatingPulse 2s ease-in-out infinite;
  transition: all 0.3s ease;
}
.floating-call:hover { 
  background: var(--brand-700); 
  transform: scale(1.1);
}
.floating-call i { font-size: 20px; color: #fff; }

@keyframes floatingPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 12px 24px rgba(227,30,36,0.35);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 16px 32px rgba(227,30,36,0.45);
  }
}

/* Pulse animation removed */

