@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

:root {
  --gold: #eab444;
  --navy: #000000;
  --white: #ffffff;
}

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

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin-slow {
  animation: spin-slow 8s linear infinite;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', sans-serif;
  direction: rtl;
  background: var(--white);
  color: var(--navy);
}

/* Navbar */
.navbar {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: #000000;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar.scrolled {
  background: #000000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.7) !important;
}
.navbar .nav-link:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}
.navbar .nav-link-active {
  color: #ffffff !important;
  background: rgba(234, 180, 68, 0.2) !important;
}
.navbar .hamburger span {
  background: #ffffff !important;
}
.navbar .bg-gold\/15 {
  background: rgba(234, 180, 68, 0.2) !important;
}
.mobile-menu .bg-white {
  background: #111111 !important;
}
.mobile-menu .text-navy {
  color: #ffffff !important;
}
.mobile-menu .bg-gold\/10 {
  background: rgba(234, 180, 68, 0.15) !important;
}
.mobile-menu .border-gold\/20 {
  border-color: rgba(234, 180, 68, 0.2) !important;
}



.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--navy);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.logo-text span {
  color: var(--gold);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(6, 22, 45, 0.95) 0%, rgba(6, 22, 45, 0.75) 40%, rgba(234, 180, 68, 0.2) 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(234, 180, 68, 0.12);
  border: 1px solid rgba(234, 180, 68, 0.3);
  color: var(--gold);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  color: var(--gold);
  position: relative;
  text-shadow: 0 4px 20px rgba(234, 180, 68, 0.3);
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #d4a03a 100%);
  color: var(--navy);
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  box-shadow: 0 4px 20px rgba(234, 180, 68, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(234, 180, 68, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
}

.hero-stat p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  padding: 10rem 2rem 4rem;
  background: linear-gradient(135deg, var(--navy) 0%, #0a1f3d 100%);
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(234, 180, 68, 0.1) 0%, transparent 50%);
  animation: pageHeroPulse 15s ease-in-out infinite;
}

@keyframes pageHeroPulse {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(3%, 3%); }
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  position: relative;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: var(--gold);
  font-size: 0.9rem;
}

/* Sections */
.section {
  padding: 5rem 2rem;
}

.section-dark {
  background: linear-gradient(180deg, var(--navy) 0%, #0a1f3d 100%);
  color: var(--white);
  position: relative;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(234, 180, 68, 0.3), transparent);
}

.section-light {
  background: linear-gradient(180deg, #f8f9fa 0%, #f0f2f5 100%);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.section-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(234, 180, 68, 0.1);
  color: var(--gold);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(234, 180, 68, 0.2);
}

.section-dark .section-header .badge {
  background: rgba(234, 180, 68, 0.15);
  border-color: rgba(234, 180, 68, 0.3);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header h2 span {
  color: var(--gold);
}

.section-header p {
  font-size: 1.05rem;
  color: #666;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

/* Cards */
.card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(6, 22, 45, 0.06);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(6, 22, 45, 0.15);
  border-color: rgba(234, 180, 68, 0.3);
  background: rgba(255, 255, 255, 1);
}

.card-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(234, 180, 68, 0.12), rgba(234, 180, 68, 0.04));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-icon {
  background: linear-gradient(135deg, var(--gold), #d4a03a);
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 8px 25px rgba(234, 180, 68, 0.35);
}

.card-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s ease;
}

.card:hover .card-icon svg {
  stroke: var(--navy);
}

.card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.card p {
  color: #666;
  line-height: 1.8;
  font-size: 0.95rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.card-link:hover {
  gap: 0.8rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Services Page Cards */
.service-full-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.4s ease;
  margin-bottom: 2rem;
}

.service-full-card:hover {
  box-shadow: 0 20px 60px rgba(6, 22, 45, 0.12);
  border-color: var(--gold);
}

.service-full-card:nth-child(even) {
  direction: ltr;
}

.service-full-card .service-img {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-full-card .service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 22, 45, 0.4), rgba(234, 180, 68, 0.2));
}

.service-full-card .service-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-full-card .service-num {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(234, 180, 68, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-full-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.service-full-card p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.service-full-card .btn-primary {
  align-self: flex-start;
  padding: 0.7rem 2rem;
  font-size: 0.9rem;
}

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

.project-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  height: 380px;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(6, 22, 45, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(6, 22, 45, 0.25);
}

.project-card img,
.project-card .project-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover img,
.project-card:hover .project-bg {
  transform: scale(1.12);
}

.project-card .project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 22, 45, 0.95) 0%, rgba(6, 22, 45, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(6, 22, 45, 0.98) 0%, rgba(234, 180, 68, 0.3) 60%, rgba(6, 22, 45, 0.4) 100%);
}

.project-card .project-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.project-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.project-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Contract Cards */
.contract-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 3rem;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 20px rgba(6, 22, 45, 0.06);
}

.contract-card.featured {
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(234, 180, 68, 0.2);
  background: rgba(255, 255, 255, 1);
}

.contract-card.featured::before {
  content: 'الأكثر طلباً';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #d4a03a);
  color: var(--navy);
  padding: 0.5rem 2rem;
  border-radius: 0 0 14px 14px;
  font-size: 0.85rem;
  font-weight: 700;
}

.contract-card:hover {
  border-color: rgba(234, 180, 68, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(6, 22, 45, 0.15);
  background: rgba(255, 255, 255, 1);
}

.contract-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.contract-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contract-card .price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  margin: 1.5rem 0;
}

.contract-card .price small {
  font-size: 1rem;
  color: #999;
  font-weight: 400;
}

.contract-card ul {
  list-style: none;
  margin: 2rem 0;
  text-align: right;
}

.contract-card ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #555;
}

.contract-card ul li svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.contract-card .btn-primary {
  width: 100%;
  justify-content: center;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(229, 231, 235, 0.6);
  border-radius: 14px;
  font-family: 'Tajawal', sans-serif;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(250, 250, 250, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(234, 180, 68, 0.1), 0 4px 20px rgba(234, 180, 68, 0.1);
  transform: translateY(-1px);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Contact Info */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  background: rgba(248, 249, 250, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 40px rgba(6, 22, 45, 0.1);
  transform: translateY(-3px);
}

.contact-info-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--gold), #d4a03a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(234, 180, 68, 0.25);
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 8px 25px rgba(234, 180, 68, 0.35);
}

.contact-info-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
}

.contact-info-card h4 {
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--navy);
}

.contact-info-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 998;
}

.floating-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.floating-btn::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: inherit;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease;
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.floating-btn:hover::after {
  opacity: 0.3;
  transform: scale(1.2);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.call-btn {
  background: linear-gradient(135deg, var(--gold), #d4a03a);
}

.call-btn svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
}

/* Footer */
.footer {
  background: #000000 !important;
  color: #ffffff !important;
  padding: 5rem 2rem 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer::before {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.8;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.footer h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff !important;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.75rem;
}

.footer ul a {
  color: rgba(255, 255, 255, 0.6) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer ul a:hover {
  color: var(--gold);
  padding-right: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--gold), #d4a03a);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(234, 180, 68, 0.3);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  fill: #ffffff !important;
  transition: all 0.3s ease;
}

.footer-social a:hover svg {
  fill: var(--white);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5) !important;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  background: rgba(234, 180, 68, 0.06);
  border-color: rgba(234, 180, 68, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.why-card-icon {
  width: 84px;
  height: 84px;
  background: linear-gradient(135deg, rgba(234, 180, 68, 0.18), rgba(234, 180, 68, 0.04));
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover .why-card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(234, 180, 68, 0.3);
  background: linear-gradient(135deg, var(--gold), #d4a03a);
}

.why-card-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  transition: all 0.4s ease;
}

.why-card:hover .why-card-icon svg {
  stroke: var(--navy);
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(6, 22, 45, 0.2);
}

.about-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.about-img::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--gold), #d4a03a);
  border-radius: 24px;
  z-index: -1;
  opacity: 0.3;
  transition: all 0.4s ease;
}

.about-img:hover::after {
  transform: translate(5px, 5px);
  opacity: 0.5;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-text h2 span {
  color: var(--gold);
}

.about-text p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.about-list {
  list-style: none;
  margin: 1.5rem 0;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-weight: 600;
}

.about-list li svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, #d4a03a 50%, var(--gold) 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  animation: ctaPulse 8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(5%, 5%); }
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(6, 22, 45, 0.7);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-section .btn-secondary {
  color: var(--navy);
  border-color: var(--navy);
}

.cta-section .btn-secondary:hover {
  background: var(--navy);
  color: var(--gold);
}

/* Testimonials */
.testimonial-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(6, 22, 45, 0.06);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(6, 22, 45, 0.12);
  border-color: rgba(234, 180, 68, 0.3);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #d4a03a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.2rem;
}

.testimonial-author h4 {
  font-weight: 700;
  color: var(--navy);
}

.testimonial-author p {
  font-size: 0.85rem;
  color: #999;
}

/* Map placeholder */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1.1rem;
}

/* Privacy Policy */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 1rem;
}

.privacy-content p {
  color: #555;
  line-height: 2;
  margin-bottom: 1rem;
}

.privacy-content ul {
  list-style: disc;
  padding-right: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-content ul li {
  color: #555;
  line-height: 2;
  margin-bottom: 0.25rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

.animate-in.delay-1 { animation-delay: 0.1s; }
.animate-in.delay-2 { animation-delay: 0.2s; }
.animate-in.delay-3 { animation-delay: 0.3s; }
.animate-in.delay-4 { animation-delay: 0.4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .service-full-card {
    grid-template-columns: 1fr;
  }
  .service-full-card:nth-child(even) {
    direction: rtl;
  }
  .contract-card.featured {
    transform: none;
  }
  .contract-card.featured:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .hero-stat h3 {
    font-size: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .floating-buttons {
    bottom: 1.5rem;
    left: 1rem;
  }
  .floating-btn {
    width: 52px;
    height: 52px;
  }
  .page-hero h1 {
    font-size: 2rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
