/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Tajawal", Arial, sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  background-color: #ffffff;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000000;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  font-weight: 900;
  font-family: "Amiri", serif;
}

h2 {
  font-size: 2.5rem;
  font-family: "Amiri", serif;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1rem;
  color: #4a4a4a;
  line-height: 1.7;
}

.lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: #2c2c2c;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #000000, #2c2c2c);
  color: white;
  border-color: #000000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2c2c2c, #4a4a4a);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border-color: white;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: white;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

/* Header */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
}

.navbar {
  padding: 0.1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  border-radius: 8px;
}

.brand-text h2 {
  color: #000000;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
  font-family: "Amiri", serif;
}

.brand-text p {
  color: #666666;
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-menu a {
  text-decoration: none;
  color: #2c2c2c;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a:hover {
  color: #000000;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, #000000, #4a4a4a);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-menu a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: linear-gradient(90deg, #000000, #4a4a4a);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  color: white;
  padding: 180px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

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

.hero-logo {
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease;
}

.hero-logo-img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
  border-radius: 12px;
}

.hero h1 {
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #f0f0f0;
  font-family: "Amiri", serif;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #d0d0d0;
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.6s both;
}

/* Social Media in Hero */
.social-media-hero {
  margin: 2rem 0;
  animation: fadeInUp 1s ease 0.7s both;
}

.social-label {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #f0f0f0;
  font-weight: 500;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.4s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link.whatsapp {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.social-link.whatsapp:hover {
  background: #ffffff;
  color: #000000;
}

.social-link.twitter {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.social-link.twitter:hover {
  background: #ffffff;
  color: #000000;
}

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

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  color: #000000;
  margin-bottom: 1rem;
  position: relative;
}

.section-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #000000, #4a4a4a, #000000);
  margin: 0 auto 1rem;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

/* About Section */
.about {
  padding: 120px 0;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), transparent);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
  position: relative;
}

.quote-decoration {
  font-size: 4rem;
  color: #cccccc;
  opacity: 0.3;
  position: absolute;
  top: -20px;
  right: -20px;
  font-family: "Amiri", serif;
}

.expertise-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.badge {
  background: linear-gradient(135deg, #000000, #2c2c2c);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: #000000;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.stat-item h3 {
  font-size: 2.8rem;
  color: #000000;
  margin-bottom: 0.5rem;
  font-family: "Amiri", serif;
}

.stat-item p {
  color: #666666;
  font-weight: 600;
  margin: 0;
}

/* Services Section */
.services {
  padding: 120px 0;
  background-color: white;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #000000, #4a4a4a);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card.featured {
  border-color: #000000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card.featured::before {
  transform: scaleX(1);
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border-color: #000000;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.service-card h3 {
  color: #000000;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-family: "Amiri", serif;
}

.service-card p {
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.service-features span {
  background: linear-gradient(135deg, #fafafa, #f0f0f0);
  color: #000000;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.service-features span:hover {
  background: linear-gradient(135deg, #000000, #2c2c2c);
  color: white;
  transform: translateY(-1px);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: #fff;
}

.testimonials .section-header h2,
.testimonials .section-divider {
  color: white;
}

.testimonials .section-subtitle {
  color: #d0d0d0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f0f0f0;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 3rem;
  color: #cccccc;
  position: absolute;
  top: -10px;
  right: -10px;
  opacity: 0.5;
}

.testimonial-author h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.testimonial-author p {
  color: #cccccc;
  font-size: 0.9rem;
  margin: 0;
}

/* Contact Section */
.contact {
  padding: 120px 0;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
  border: 1px solid #f0f0f0;
}

.contact-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.contact-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: #000000;
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-item h4 {
  color: #000000;
  margin-bottom: 1rem;
  font-family: "Amiri", serif;
}

.contact-item a {
  color: #2c2c2c;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #000000;
  text-decoration: underline;
}

/* Social Media in Contact */
.social-contact .social-links-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.social-links-contact .social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: auto;
  height: auto;
  background: rgba(0, 0, 0, 0.05);
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-links-contact .social-link:hover {
  background: #000000;
  color: white;
}

.social-links-contact .social-link svg {
  width: 20px;
  height: 20px;
}

.social-links-contact .social-link span {
  font-size: 0.9rem;
}

.working-hours {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.working-hours h3 {
  color: #000000;
  margin-bottom: 2rem;
  text-align: center;
  font-family: "Amiri", serif;
  font-size: 1.8rem;
}

.hours-info {
  margin-bottom: 2rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 1rem;
}

.hours-item:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
}

.day {
  font-weight: 600;
  color: #2c2c2c;
}

.time {
  color: #000000;
  font-weight: 600;
}

.note-box {
  background: linear-gradient(135deg, #fafafa, #f0f0f0);
  padding: 1.5rem;
  border-radius: 15px;
  border-right: 4px solid #000000;
  margin-bottom: 2rem;
}

.note-box .note {
  font-size: 0.95rem;
  color: #4a4a4a;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.note-box .note:last-child {
  margin-bottom: 0;
}

/* Contact Form */
.working-hours form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.working-hours form h4 {
  font-size: 1.6rem;
  color: #000000;
  margin-bottom: 1rem;
  font-family: "Amiri", serif;
  text-align: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.working-hours form label {
  font-weight: 600;
  color: #2c2c2c;
  font-size: 1rem;
}

.required {
  color: #e53e3e;
  font-weight: bold;
}

.working-hours form input,
.working-hours form textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: "Tajawal", Arial, sans-serif;
  transition: all 0.3s ease;
  resize: vertical;
}

.working-hours form input:focus,
.working-hours form textarea:focus {
  border-color: #000000;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.working-hours form textarea {
  min-height: 100px;
}

.error-message {
  color: #e53e3e;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-group.error .error-message {
  display: block;
}

.submit-btn {
  background: linear-gradient(135deg, #000000, #2c2c2c);
  color: white;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #2c2c2c, #4a4a4a);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-loading {
  display: none;
}

.submit-btn.loading .btn-text {
  display: none;
}

.submit-btn.loading .btn-loading {
  display: inline;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: white;
  padding: 80px 0 30px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #4a4a4a, transparent);
}

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

.footer-logo {
  text-align: center;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  border-radius: 8px;
}

.footer-section h3,
.footer-section h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-family: "Amiri", serif;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
  color: #d0d0d0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-section ul li:hover {
  color: #ffffff;
  padding-right: 5px;
}

.footer-section p {
  color: #d0d0d0;
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: #d0d0d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffffff;
}

/* Social Media in Footer */
.footer-social {
  margin-top: 2rem;
}

.footer-social .social-label {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 500;
}

.social-links-footer {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links-footer .social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links-footer .social-link:hover {
  background: white;
  color: #000000;
}

.social-links-footer .social-link svg {
  width: 22px;
  height: 22px;
}

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

.footer-bottom p {
  color: #cccccc;
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-stats {
    flex-direction: row;
    justify-content: space-around;
  }

  .contact-content {
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .logo-img {
    height: 50px;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu li {
    margin-bottom: 1rem;
  }

  .hero {
    padding: 140px 0 100px;
    min-height: 90vh;
  }

  .hero-logo-img {
    height: 100px;
  }

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

  .hero-subtitle {
    font-size: 1.3rem;
  }

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

  .social-links {
    gap: 0.8rem;
  }

  .social-link {
    width: 45px;
    height: 45px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }

  .about-stats {
    flex-direction: column;
  }

  .stat-item {
    padding: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-card {
    padding: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 2rem;
  }

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

  .social-links-contact {
    grid-template-columns: 1fr;
  }

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

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

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .container {
    padding: 0 15px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-logo-img {
    height: 80px;
  }

  .service-card,
  .contact-item,
  .working-hours {
    padding: 1.5rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .hours-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  .working-hours form {
    gap: 1rem;
  }

  .form-group {
    gap: 0.3rem;
  }

  .hero-buttons {
    gap: 0.8rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .container {
    padding: 0 10px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-pattern {
    animation: none;
  }

  .float {
    animation: none;
  }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid #000000;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip to content link for screen readers */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000000;
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 4px;
}

.skip-to-content:focus {
  top: 6px;
}

/* Print styles */
@media print {
  .header,
  .mobile-menu-toggle,
  .hero-pattern,
  .hero-decoration,
  .social-links,
  .social-links-contact,
  .social-links-footer {
    display: none;
  }

  .hero {
    background: none;
    color: black;
    padding: 2rem 0;
  }

  .service-card,
  .contact-item,
  .testimonial-card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .footer {
    background: none;
    color: black;
  }

  .container {
    max-width: none;
  }

  .btn {
    border: 2px solid #ccc;
    background: none !important;
    color: black !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn-primary {
    background: #000;
    border-color: #000;
  }

  .service-card,
  .contact-item {
    border: 2px solid #000;
  }

  .social-link {
    border: 2px solid currentColor;
  }
}

/* Dark mode support (for future implementation) */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #1a202c;
    --text-color: #f7fafc;
    --card-bg: #2d3748;
  }
}
