/* Fix body overflow */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  overflow-x: hidden !important;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
}

/* Navigation */
nav {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  padding: 0.5rem 3rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: 70px;
  font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
  position: fixed;
}

.logo img {
  height: 80px;
  width: auto;
  transition: all 0.3s ease;
  position: absolute;
  left: 5rem;
  top: 50%;
  transform: translateY(-50%);
  vertical-align: middle;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.opening-hours {
  position: absolute;
  right: 8rem;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 0.9rem;
  text-align: right;
  line-height: 1.3;
  font-weight: 500;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: all 0.3s ease;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1001;
  position: relative;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  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);
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.025em;
  padding: 0.75rem 1.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, #7dd3fc, #38bdf8);
  transform: translateX(-50%) scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #93c5fd;
  text-shadow: 0 0 15px rgba(147, 197, 253, 0.6), 0 0 30px rgba(147, 197, 253, 0.3);
  transform: translateY(-2px);
}

.nav-links a:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.nav-links a:active {
  transform: translateY(-1px);
}

/* Hero Section with Background Image */
.hero-bg {
  height: 110vh;
  padding-top: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
              url('images/fullsahara.webp') center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  top: 0;
  z-index: 1;
}

.hero-content {
  max-width: 1100px;
  padding: 2rem;
  margin-top: 100px;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #334fad 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #2c5aa0;
  transform: translateY(-2px);
}

/* Company Info Section */
.company-info {
  padding: 5rem 0;
  background: #f8fafc;
}

.info-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.info-header {
  text-align: center;
  margin-bottom: 4rem;
}

.info-header h2 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.info-subtitle {
  font-size: 1.2rem;
  color: #64748b;
}

.info-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.info-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
}

.info-text p {
  margin-bottom: 2rem;
}

.info-highlights {
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.highlight-item i {
  color: #10b981;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.info-stats {
  display: grid;
  gap: 2rem;
}

.stat-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c5aa0;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.footer-section i {
  margin-right: 0.5rem;
  width: 16px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  color: white;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  vertical-align: middle;
}

.social-links a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

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

/* Sponsors Section */
.sponsors-section {
  padding: 4rem 0;
  background: transparent;
  overflow: hidden;
}

.sponsors-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 3rem;
  font-weight: 600;
}

.sponsors-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.sponsors-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  flex-shrink: 0;
}

.sponsor-item:hover {
  transform: translateY(-5px);
}

.sponsor-item img {
  width: 250px;
  height: 90px;
  object-fit: fill;
  border-radius: 8px;
  
}

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

/* Pause animation on hover */
.sponsors-carousel:hover .sponsors-track {
  animation-play-state: paused;
}

/* Modern Services Section */
.services-modern {
  padding: 4rem 0 5rem;
  background: white;
  margin-top: 70px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 400px;
}

.service-item.reverse {
  direction: rtl;
}

.service-item.reverse > * {
  direction: ltr;
}

.service-visual {
  position: relative;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item:hover .service-visual img {
  transform: scale(1.05);
}

.service-icon {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
}

.service-icon i {
  font-size: 2rem;
  color: #3b82f6;
}

.service-content {
  padding: 2rem 0;
}

.service-content h3 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.service-content p {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.feature-tag {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Page Header Styles */
.page-header {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services-section {
  padding: 8rem 0 5rem;
  background: #f8fafc;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #64748b;
}

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

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 1.5rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card > p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  color: #475569;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.service-details {
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.service-details p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background: white;
}

.process-steps {
  display: grid;
  gap: 3rem;
}

.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.step-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.step-details ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.step-details li {
  color: #475569;
  position: relative;
  padding-left: 1.5rem;
}

.step-details li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

/* Additional Services */
.additional-services {
  padding: 5rem 0;
  background: #f8fafc;
}

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

.additional-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.additional-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.additional-card i {
  font-size: 2.5rem;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.additional-card h3 {
  font-size: 1.2rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.additional-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background: white;
}

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

.stat-card {
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.stat-icon i {
  font-size: 1.5rem;
  color: white;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.portfolio-item.hidden {
  display: none;
}

.portfolio-media {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.portfolio-media img,
.portfolio-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-media img,
.portfolio-item:hover .portfolio-media video {
  transform: scale(1.05);
}

.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .media-overlay {
  opacity: 1;
}

.portfolio-btn {
  background: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #1e293b;
}

.portfolio-btn:hover {
  background: #3b82f6;
  color: white;
  transform: scale(1.1);
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-category {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.portfolio-content h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.portfolio-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.portfolio-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.portfolio-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #475569;
  font-size: 0.9rem;
}

.portfolio-meta i {
  color: #3b82f6;
  font-size: 0.8rem;
}

/* Project Modal */
.project-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.project-modal.active {
  opacity: 1;
  visibility: visible;
}

.project-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.project-modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.project-modal .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.project-modal .modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}

.project-modal .modal-body {
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

.project-header {
  margin-bottom: 2rem;
}

.project-header h2 {
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.project-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  color: #64748b;
}

.project-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.project-meta i {
  color: #3b82f6;
}

.project-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
}

.gallery-item.main {
  grid-row: span 2;
}

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

.project-description h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.project-description h3:first-child {
  margin-top: 0;
}

.project-description p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.project-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.spec-item {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.spec-item h4 {
  color: #1e293b;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.spec-item p {
  color: #3b82f6;
  font-weight: 500;
  margin: 0;
}

/* Clean Contact Section */
.contact-clean {
  padding: 3rem 0;
  background: #f8fafc;
  margin-top: 70px;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header h1 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

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

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.info-item i {
  font-size: 1.5rem;
  color: #3b82f6;
  margin-top: 0.25rem;
  min-width: 24px;
}

.info-text {
  flex: 1;
}

.info-text h3 {
  font-size: 1.8rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.info-text h4 {
  font-size: 1.2rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.info-text p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.info-text a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.info-text a:hover {
  color: #1e40af;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.opening-hours-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
}

.opening-hours-section .info-item {
  margin: 0;
}

.hours-list {
  margin-top: 1rem;
}

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

.hours-item:last-child {
  border-bottom: none;
}

.day {
  font-weight: 500;
  color: #374151;
}

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

.map-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
}

.map-section h4 {
  font-size: 1.2rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

/* References Section */
.references-section {
  padding: 4rem 0;
  background: white;
}

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

.reference-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.reference-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.reference-image {
  height: 220px;
  overflow: hidden;
}

.reference-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.reference-content {
  padding: 1.5rem;
}

.reference-category {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.reference-content h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.reference-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.reference-details {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.reference-details span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #475569;
  font-size: 0.9rem;
}

.reference-details i {
  color: #3b82f6;
  font-size: 0.8rem;
}

/* New References Section */
.references-main {
  padding: 4rem 0;
  background: white;
}

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

.reference-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.reference-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.reference-image {
  height: 220px;
  overflow: hidden;
}

.reference-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.reference-item:hover .reference-image img {
  transform: scale(1.05);
}

.reference-content {
  padding: 1.5rem;
}

.reference-tag {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.reference-content h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.reference-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.reference-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.reference-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #475569;
  font-size: 0.9rem;
}

.reference-meta i {
  color: #3b82f6;
  font-size: 0.8rem;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  /* Fix body overflow issues */
  body {
    overflow-x: hidden;
  }
  
  /* Navigation fixes */
  nav {
    padding: 0.5rem 1rem;
    height: 60px;
    clip-path: none;
    justify-content: space-between;
  }
  
  .logo {
    z-index: 1002;
  }
  
  .logo img {
    height: 40px;
    position: static;
    left: auto;
    top: auto;
    transform: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    z-index: 1002;
  }
  
  .opening-hours {
    display: none;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 1001;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    text-align: center;
    width: 80%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    margin: 0.5rem 0;
  }
  
  .nav-links a:hover {
    background: rgba(255,255,255,0.1);
  }
  
  /* Hero section mobile fixes */
  .hero-bg {
    height: 60vh;
    padding: 0 1rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  /* Company info mobile fixes */
  .company-info {
    padding: 2rem 0;
  }
  
  .info-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .info-header h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .info-subtitle {
    font-size: 1rem;
  }
  
  .info-text {
    font-size: 1rem;
  }
  
  .info-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-item {
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  /* Services mobile optimization */
  .services-modern {
    padding: 2rem 0;
    margin-top: 60px;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .services-list {
    gap: 3rem;
  }
  
  .service-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: auto;
  }
  
  .service-item.reverse {
    direction: ltr;
  }
  
  .service-visual {
    height: 200px;
    border-radius: 15px;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
    top: 1rem;
    left: 1rem;
    border-radius: 15px;
  }
  
  .service-icon i {
    font-size: 1.2rem;
  }
  
  .service-content {
    padding: 0.5rem 0;
    text-align: center;
  }
  
  .service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .service-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  
  .service-features {
    justify-content: center;
    gap: 0.5rem;
  }
  
  .feature-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
  
  /* Portfolio mobile fixes */
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .portfolio-media {
    height: 200px;
  }
  
  .portfolio-content {
    padding: 1rem;
  }
  
  .portfolio-content h3 {
    font-size: 1.2rem;
  }
  
  .portfolio-content p {
    font-size: 0.9rem;
  }
  
  /* Modal mobile fixes */
  .project-gallery {
    grid-template-columns: 1fr;
  }
  
  .gallery-item.main {
    grid-row: span 1;
  }
  
  .project-meta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .project-modal .modal-content {
    width: 95%;
    max-height: 95vh;
  }
  
  .project-modal .modal-body {
    padding: 1rem;
  }
  
  .project-header h2 {
    font-size: 1.5rem;
  }
  
  /* Stats section mobile */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  /* CTA section mobile */
  .cta-content h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  /* Footer mobile fixes */
  footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-section h3 {
    font-size: 1.1rem;
  }
  
  .footer-section p {
    font-size: 0.9rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  /* Sponsors section mobile */
  .sponsors-section {
    padding: 2rem 0;
  }
  
  .sponsors-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .sponsor-item {
    min-width: 120px;
  }
  
  .sponsor-item img {
    width: 120px;
    height: 60px;
  }
  
  /* Contact mobile fixes */
  .contact-clean {
    padding: 2rem 0;
    margin-top: 60px;
  }
  
  .contact-header h1 {
    font-size: 2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .info-section {
    gap: 1.5rem;
  }
  
  .info-item {
    gap: 1rem;
  }
  
  .info-text h3 {
    font-size: 1.5rem;
  }
  
  .contact-right {
    gap: 2rem;
  }
  
  .opening-hours-section,
  .map-section {
    padding: 1.5rem;
  }
  
  .map-container iframe {
    height: 250px;
  }
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .opening-hours {
    right: 1rem;
    font-size: 0.8rem;
  }
  
  .logo img {
    left: 3rem;
    height: 70px;
  }
}

/* Large tablet / small desktop */
@media (max-width: 1200px) and (min-width: 1025px) {
  .opening-hours {
    right: 1.5rem;
    font-size: 0.85rem;
  }
  
  .logo img {
    left: 4rem;
    height: 75px;
  }
}