/* Taibah Steel - Main Stylesheet */

/* Custom Fonts */
@font-face {
  font-family: "DIN Next LT Pro";
  src: url("../fonts/DINNextLTPro-Black.woff") format("woff");
  font-weight: 900;
}
@font-face {
  font-family: "DIN Next LT Pro";
  src: url("../fonts/DINNextLTPro-Bold.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "DIN Next LT Pro";
  src: url("../fonts/DINNextLTPro-Condensed.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "DIN Next Rounded LT Pro";
  src: url("../fonts/DINNextRoundedLTPro-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "DIN Next Rounded LT Pro";
  src: url("../fonts/DINNextRoundedLTPro-Regular.woff") format("woff");
  font-weight: 400;
}

/* CSS Variables */
:root {
  --primary-green: #00944a;
  --dark-green: #044825;
  --accent-yellow: #ffcc68;
  --gray: #808285;
  --light-gray: #e9eaec;
  --text-gray: #7a7a7a;
  --white: #ffffff;
  --black: #1a1a1a;
  --font-main: "DIN Next LT Pro", "Arial", sans-serif;
  --font-rounded: "DIN Next Rounded LT Pro", "Arial", sans-serif;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark-green);
  color: var(--white);
  padding: 6px 0;
  font-size: 13px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a {
  color: var(--white);
  opacity: 0.9;
}
.top-bar a:hover {
  opacity: 1;
}
.top-bar .contact-items {
  display: flex;
  gap: 20px;
  align-items: center;
}
.top-bar .contact-items span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}
.navbar-brand img {
  height: 55px;
  padding: 8px 0;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-menu a {
  padding: 20px 15px;
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 3px;
  background: var(--primary-green);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-green);
}

.btn-order {
  background: var(--primary-green) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.btn-order:hover {
  background: var(--dark-green) !important;
}
.btn-order::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}
.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
  display: block;
}

.hero {
  display: grid;
  grid-template-columns: 60% 40%;
  height: 100vh;
  overflow: hidden;
}

.hero-left,
.hero-right {
  position: relative;
}

.hero-left img,
.hero-right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-left::before,
.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

@media (max-width: 991px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero-left {
    min-height: 700px;
  }

  .hero-right {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
}
.btn-primary {
  background: var(--primary-green);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-block;
  border: 2px solid var(--primary-green);
}
.btn-primary:hover {
  background: var(--dark-green);
  border-color: var(--dark-green);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--white);
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark-green);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}
.section-title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.section-subtitle {
  color: var(--text-gray);
  font-size: 16px;
  margin-bottom: 50px;
  max-width: 600px;
}

/* ===== PRICE SECTION LAYOUT ===== */
.prices-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

/* ===== LEFT IMAGE BOX ===== */
.prices-info {
  position: relative;
  background: url("../images/Taibah-Steel.jpg") center center/cover no-repeat;
  min-height: 30px;
  padding: 70px 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Dark Green Overlay */
.prices-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 72, 37, 0.78);
}

.prices-info > * {
  position: relative;
  z-index: 2;
}

.prices-info h3 {
  display: none; /* hidden like screenshot */
}

.prices-info ul {
  gap: 12px;
}

.prices-info ul li {
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}

/* ===== TABLE ===== */
.prices-table {
  width: 90%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.prices-table th {
  background: #369544;
  color: #fff;
  padding: 12px;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  border-right: 2px solid rgba(0, 0, 0, 0.15);
}

.prices-table td {
  padding: 12px;
  font-size: 18px;
  border: 1px solid #cfcfcf;
  letter-spacing: 0.9px;
}

.prices-table tbody tr {
  background: #fff;
}

.prices-table tbody tr:nth-child(even) {
  background: #fafafa;
}

/* Button like screenshot */
.prices-info .btn-outline {
  border: 3px solid #f4b942;
  color: #fff;
  padding: 14px 30px !important;
  font-size: 18px !important;
  display: inline-block;
}

/* ===== ADVANTAGES ===== */
.advantages-section {
  background: #f7f7f7;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
}
.advantage-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.advantage-card img {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-green);
  border-radius: 50%;
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.advantage-card .icon {
  width: 55px;
  height: 55px;
  margin-bottom: 20px;
}
.advantage-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 10px;
}
.advantage-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===== HISTORY ===== */
.history-section {
  background: var(--white);
}
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.history-content h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary-green);
  margin-bottom: 15px;
}
.history-content p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 15px;
}
.history-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* ===== CLIENTS ===== */
.clients-section {
  background: var(--dark-green);
  padding: 60px 0;
}

.clients-section .section-title {
  color: var(--white);
  text-align: center;
}

.clients-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin: 0 auto 40px;
}

.clients-track {
  overflow: hidden;
  position: relative;
}

.clients-inner {
  display: flex;
  justify-content: center; /* Center logos */
  align-items: center;
  gap: 25px;
  flex-wrap: wrap; /* Move to next line if needed */

  /* animation: scrollClients 20s linear infinite; */
}

.clients-inner img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.2s;
}

.clients-inner img:hover {
  opacity: 1;
}

/*
@keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
*/

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}
.why-center-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-center-logo img {
  width: 180px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.why-item .num {
  background: var(--primary-green);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}
.why-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 4px;
}
.why-item p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}
.why-right .why-item {
  flex-direction: row-reverse;
  text-align: right;
}

/* ===== BENEFITS ===== */
.benefits-section {
  background: var(--primary-green);
  padding: 80px 0;
}
.benefits-section .section-title {
  color: var(--white);
  text-align: center;
}
.benefits-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin: 0 auto 50px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.benefit-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 25px;
  border-radius: 8px;
  text-align: center;
  color: var(--white);
  transition: background 0.2s;
}
.benefit-card:hover {
  background: rgba(255, 255, 255, 0.2);
}
.benefit-card .icon {
  font-size: 36px;
  margin-bottom: 15px;
  display: block;
}
.benefit-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 13px;
  opacity: 0.85;
}

/* ===== TESTIMONIAL ===== */
.testimonial-section {
  background: #f7f7f7;
  padding: 80px 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.testimonial-video video {
  width: 100%;
  border-radius: 8px;
}
.testimonial-text {
  padding: 20px;
}
.quote-icon {
  font-size: 80px;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 10px;
  font-family: Georgia, serif;
  opacity: 0.3;
}
.testimonial-text blockquote {
  font-size: 20px;
  color: var(--black);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial-text cite {
  font-weight: 700;
  color: var(--primary-green);
  font-style: normal;
  font-size: 16px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--dark-green);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.cta-section .container {
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 600px;
}
.cta-bg-text {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: -10px;
  pointer-events: none;
  line-height: 1;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand img {
  height: 50px;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: background 0.2s;
}
.footer-social a:hover {
  background: var(--primary-green);
}
.footer-col h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--primary-green);
}
.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  align-items: flex-start;
}
.footer-contact li i {
  color: var(--primary-green);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-map iframe {
  width: 100%;
  height: 150px;
  border: none;
  border-radius: 6px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

/* ===== CONTACT PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 900;
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 16px;
  opacity: 0.85;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: var(--dark-green);
  color: var(--white);
  padding: 40px;
  border-radius: 10px;
}
.contact-info-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}
.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.contact-info-item .icon-wrap {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 3px;
}
.contact-info-item p {
  font-size: 15px;
  font-weight: 600;
}

.contact-form-card {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-green);
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 15px;
  border: 2px solid #eee;
  border-radius: 6px;
  font-family: var(--font-main);
  font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-green);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.form-submit {
  margin-top: 10px;
}
.form-submit button {
  background: var(--primary-green);
  color: var(--white);
  padding: 14px 35px;
  border: none;
  border-radius: 6px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit button:hover {
  background: var(--dark-green);
}

.alert {
  padding: 14px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
}
.alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border-left: 4px solid var(--primary-green);
}
.alert-error {
  background: #ffebee;
  color: #c62828;
  border-left: 4px solid #e53935;
}

/* ===== PRODUCTS PAGE ===== */
.products-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.product-tab-btn {
  padding: 12px 25px;
  background: transparent;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 14px;
  transition: all 0.2s;
}
.product-tab-btn.active,
.product-tab-btn:hover {
  background: var(--primary-green);
  color: var(--white);
}

/* ===== ADMIN ===== */
.admin-sidebar {
  width: 260px;
  background: var(--dark-green);
  min-height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  color: var(--white);
  padding: 0;
  z-index: 100;
}
.admin-sidebar .logo {
  padding: 25px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.admin-sidebar .logo img {
  height: 40px;
}
.admin-nav {
  padding: 20px 0;
}
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 25px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-left: 3px solid var(--accent-yellow);
}
.admin-content {
  margin-left: 260px;
  min-height: 100vh;
  background: #f4f6f9;
}
.admin-topbar {
  background: var(--white);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.admin-main {
  padding: 30px;
}
.admin-card {
  background: var(--white);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}
.admin-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.stat-card {
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 15px;
}
.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.stat-icon.green {
  background: #e8f5e9;
  color: var(--primary-green);
}
.stat-icon.blue {
  background: #e3f2fd;
  color: #1976d2;
}
.stat-icon.orange {
  background: #fff3e0;
  color: #f57c00;
}
.stat-icon.purple {
  background: #f3e5f5;
  color: #7b1fa2;
}
.stat-val {
  font-size: 26px;
  font-weight: 900;
  color: var(--black);
}
.stat-label {
  font-size: 12px;
  color: var(--text-gray);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th {
  background: #f8f9fa;
  padding: 12px 15px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-gray);
}
.data-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}
.data-table tr:hover td {
  background: #fafafa;
}
.badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.badge-success {
  background: #e8f5e9;
  color: #2e7d32;
}
.badge-warning {
  background: #fff8e1;
  color: #f57f17;
}
.badge-info {
  background: #e3f2fd;
  color: #1565c0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    gap: 0;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu a {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav-menu a::after {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .navbar .container {
    position: relative;
  }
  .prices-grid {
    grid-template-columns: 1fr;
  }
  .history-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-center-logo {
    display: none;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-sidebar {
    width: 220px;
  }
  .admin-content {
    margin-left: 220px;
  }
}
@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .top-bar .container {
    justify-content: center;
  }
}
