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

:root {
  --primary: #e33a00;
  --primary-dark: #9b1600;
  --secondary: #ffb000;
  --dark: #151515;
  --text: #202020;
  --muted: #666;
  --light: #ffffff;
  --soft: #fff6f1;
  --white: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: min(92%, 1180px);
  margin: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #111;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff4ee;
  padding: 4px;
}

.brand h2 {
  font-size: 1.1rem;
  line-height: 1.1;
  letter-spacing: 1px;
}

.brand span {
  color: var(--primary);
  font-size: 0.85rem;
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #222;
  font-weight: 600;
}

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

.admin-link {
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--secondary));
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: #111;
  border: 0;
  font-size: 1.8rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #220b00;
}

.hero-slider,
.slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 7s linear;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background: linear-gradient(rgba(0,0,0,0.52), rgba(0,0,0,0.65));
  z-index: 1;
}

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

.hero-text {
  max-width: 760px;
  color: var(--white);
  padding: 90px 0;
}

.hero-badge,
.section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #ffe7d1;
  font-weight: bold;
  letter-spacing: 0.3px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.06;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.08rem;
  max-width: 680px;
  color: #f7f2ed;
}

.hero-buttons {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.slider-dots {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: 0.3s ease;
}

.dot.active {
  background: var(--secondary);
  transform: scale(1.15);
}

.section {
  padding: 90px 0;
  background: #ffffff;
}

.stats-section {
  margin-top: -40px;
  position: relative;
  z-index: 5;
  background: transparent;
  padding-top: 0;
}

.about-section,
.locations-section {
  background: #ffffff;
}

.services-section {
  background: linear-gradient(180deg, #fff9f5 0%, #ffffff 100%);
}

.operations-section {
  background: linear-gradient(135deg, #fff4eb, #ffffff);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.section-head h2,
.contact-info h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.section-head p,
.contact-info p,
.feature-card p,
.location-card p,
.stat-card p,
.contact-item p,
.about-panel p,
.operation-card p {
  color: var(--muted);
}

.stats-grid,
.grid-2,
.footer-grid,
.contact-layout {
  display: grid;
  gap: 24px;
}

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

.grid-2,
.footer-grid,
.contact-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.stat-card,
.feature-card,
.location-card,
.form-card,
.contact-info,
.operation-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 30px;
  border: 1px solid var(--border);
}

.stat-card {
  background: #ffffff;
}

.stat-card h3,
.feature-card h3,
.location-card h3,
.contact-item h4,
.operation-card h3,
.about-panel h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

.about-modern {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.about-side {
  display: grid;
  gap: 24px;
}

.about-panel {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 34px;
  border: 1px solid rgba(0,0,0,0.06);
}

.about-panel.main {
  background: linear-gradient(135deg, #ffffff, #fff8f2);
}

.about-panel.main h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  margin-bottom: 16px;
}

.glow-card {
  background: linear-gradient(135deg, #2e1206, #7b1c00, #ff9a00);
  color: #fff;
}

.glow-card h3,
.glow-card li {
  color: #fff;
}

.logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  background: linear-gradient(135deg, #fff1e5, #fff, #ffe8c1);
}

.logo-panel img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}


.modern-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.modern-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
}

.service-modern-grid .feature-modern {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.service-modern-grid .feature-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--secondary));
}

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #fff1e7, #ffe2b1);
  margin-bottom: 16px;
}

.operation-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.operation-card.dark {
  background: linear-gradient(135deg, #1f120c, #4f1600);
  color: #fff;
}

.operation-card.dark h3,
.operation-card.dark p {
  color: #fff;
}

.operation-card.accent {
  background: linear-gradient(135deg, #fff3ea, #ffe3ba);
}

.location-modern {
  background: linear-gradient(180deg, #ffffff, #fffaf7);
}

.contact-section {
  background: linear-gradient(135deg, #fff8f4, #ffffff);
}

.contact-info,
.form-card {
  background: rgba(255,255,255,0.98);
}

.contact-list {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.contact-item {
  padding: 18px;
  background: #fff7f1;
  border-radius: 16px;
  border: 1px solid rgba(227,58,0,0.10);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #ddd;
  border-radius: 14px;
  font-size: 1rem;
  outline: none;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(227,58,0,0.08);
}

.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: bold;
  transition: 0.3s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-outline {
  border-color: rgba(255,255,255,0.85);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.10);
}

.full-width {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.alert {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 16px;
  font-weight: bold;
}

.alert.success {
  background: #e8fff0;
  color: #12743a;
}

.alert.error {
  background: #ffe7e7;
  color: #9d1414;
}

.footer {
  background: #111;
  color: #eee;
}

.footer-grid {
  padding: 56px 0 32px;
}

.footer h3,
.footer h4 {
  margin-bottom: 12px;
}

.footer p,
.footer a {
  color: #ccc;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 18px 0 24px;
  color: #bbb;
}

@media (max-width: 980px) {
  .grid-2,
  .footer-grid,
  .contact-layout,
  .about-modern,
  .operation-layout {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #ffffff;
    display: none;
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 88vh;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    text-align: center;
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .stats-section {
    margin-top: -20px;
  }
}


.gallery-section {
  background: linear-gradient(180deg, #ffffff 0%, #fff8f3 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 24px;
}

.gallery-card {
  position: relative;
  min-height: 340px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
  background: #fff;
}

.gallery-card.large {
  min-height: 420px;
}

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

.gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.70));
  color: #fff;
}

.gallery-overlay h3 {
  margin-bottom: 8px;
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  background: #25D366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(0,0,0,0.16);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
