:root {
  --gold: #d99a29;
  --gold-light: #e6b85a;
  --gold-dark: #b8821f;
  --cream: #faf8f5;
  --cream-dark: #f0ebe3;
  --dark: #1a1f2e;
  --dark-light: #2a3142;
  --text-dark: #1a1f2e;
  --text-muted: #5a6275;
  --border-color: #e5e0d8;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 10px 40px rgba(217, 154, 41, 0.2);
  --transition: all 0.3s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Cairo", sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
  height: auto;
}
.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bg-light-cream {
  background-color: var(--cream-dark);
}
.section-padding {
  padding: 100px 0;
}
.btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  border: none;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  color: white;
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: white;
}
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(217, 154, 41, 0.1), rgba(217, 154, 41, 0.05));
  border: 1px solid rgba(217, 154, 41, 0.3);
  border-radius: 30px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.logo {
  width: 100px;
  height: 100px;

  @media (max-width: 767px) {
    width: 70px;
    height: 70px;
  }
}
.navbar {
  background: transparent;
  backdrop-filter: blur(20px);
  padding: 15px 0;
  transition: var(--transition);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled {
  background: #242b3b;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-dark);
}
.brand-icon {
  color: var(--gold);
  font-size: 1.5rem;
}
.navbar-nav .nav-link {
  color: #fff;
  font-weight: 500;
  padding: 8px 16px;
  position: relative;

  @media (max-width: 767px) {
    color: var(--text-dark);
  }
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 16px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.navbar-toggler {
  border: none;
  padding: 8px;
  font-size: 1.5rem;
  color: #fff;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: url("/imgs/hero.jpg") no-repeat ;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(3px);
  background: linear-gradient(135deg, #1a1f2e25 0%, #1a1f2e57 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(217, 154, 41, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: rgba(217, 154, 41, 0.15);
  border: 1px solid rgba(217, 154, 41, 0.3);
  border-radius: 30px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  position: absolute;
  bottom: 120px;
  left: 0;
  right: 0;
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 60px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
}
.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.scroll-indicator i {
  font-size: 1.5rem;
  color: var(--gold);
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
.about-image-wrapper {
  position: relative;
}
.about-image img {
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.exp-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: white;
}
.exp-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}
.about-text {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.9;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}
.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(217, 154, 41, 0.1), rgba(217, 154, 41, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}
.service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
}
.service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.service-card:hover .service-image img {
  transform: scale(1.1);
}
.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 31, 46, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover .service-overlay {
  opacity: 1;
}
.service-content {
  padding: 24px;
}
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-top: -50px;
  position: relative;
  box-shadow: var(--shadow-gold);
}
.service-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 16px 0 8px;
}
.service-content p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}
.portfolio-slide {
  position: relative;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
}
.portfolio-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-slide-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 31, 46, 0.95) 0%, rgba(26, 31, 46, 0.5) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
}
.portfolio-slide-content .portfolio-category {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.portfolio-slide-content h3 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.portfolio-slide-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
}
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}
.carousel-control-prev {
  right: auto;
  left: -30px;
}
.carousel-control-next {
  left: auto;
  right: -30px;
}
.carousel-control-icon {
  font-size: 1.5rem;
  color: white;
}
.carousel-indicators {
  bottom: 20px;
}
.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
}
.carousel-indicators button.active {
  background: var(--gold);
}
@media (max-width: 767px) {
  .portfolio-slide {
    height: 350px;
  }
  .portfolio-slide-content {
    padding: 24px;
  }
  .portfolio-slide-content h3 {
    font-size: 1.5rem;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    top: 40%;
  }
  .carousel-control-prev {
    left: 10px;
  }
  .carousel-control-next {
    right: 10px;
  }
}
.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-5px);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.testimonial-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.author-info span {
  color: var(--text-muted);
  font-size: 13px;
}
.partners-slider {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.partner-item {
  opacity: 0.5;
  transition: var(--transition);
}
.partner-item:hover {
  opacity: 1;
}
.partner-logo {
  width: 120px;
  height: 60px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 600;
}
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}
.cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(217, 154, 41, 0.2) 0%, transparent 50%);
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-main {
  background: var(--dark);
  color: white;
  padding: 80px 0 0;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}
.footer-logo .brand-icon {
  color: var(--gold);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}
.footer-brand .social-links {
  display: flex;
  gap: 12px;
}
.footer-brand .social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}
.footer-brand .social-links a:hover {
  background: var(--gold);
}
.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 12px;
}
.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.footer-links ul li a:hover {
  color: var(--gold);
  padding-right: 8px;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact ul li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact ul li i {
  color: var(--gold);
  font-size: 1.1rem;
}
.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .navbar-collapse {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 16px;
    box-shadow: var(--shadow);
  }
  .hero-stats {
    position: relative;
  }
}
@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }
  .hero-title {
    font-size: 2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-large {
    height: 250px;
  }
}
