@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}

:root {
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dim: rgba(212, 175, 55, 0.1);
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f0d060 100%);
  --dark: #0a0a0a;
  --dark-2: #121212;
  --dark-3: #1a1a1a;
  --cream: #f9f6f2;
  --text-light: rgba(249, 246, 242, 0.85);
  --text-muted: rgba(249, 246, 242, 0.5);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(212, 175, 55, 0.2);
  --shadow-gold: 0 15px 45px rgba(212, 175, 55, 0.12);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
  --r-sm: 10px;
  --r-md: 20px;
  --r-lg: 32px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.padding-y {
  padding: 8rem 0;
}
@media (max-width: 768px) {
  .padding-y {
    padding: 5rem 0;
  }
}

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

/* Font Awesome Rendering Fix */
.fa-solid,
.fas,
.fa-regular,
.far,
.fa-brands,
.fab {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900;
}
.fa-regular,
.far {
  font-weight: 400 !important;
}
.fa-brands,
.fab {
  font-family: "Font Awesome 6 Brands" !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Cairo", sans-serif;
  background: var(--dark);
  color: var(--cream);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  line-height: 1.7;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.gold-text {
  color: var(--gold);
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin: 0.75rem 0;
  line-height: 1.3;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}
.section-tag {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.85rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}
.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}
.logo-name {
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  direction: ltr;
}
.navbar .logo-name {
  font-size: 1.8rem;
}
.footer .logo-name {
  font-size: 1.1rem;
}

.kingdom {
  background: linear-gradient(90deg, #d4af37, #fdf5d2, #d4af37);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}
.decors {
  color: #f2e7bf; /* Cream/Champagne harmonious color */
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  margin-top: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 100%;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after {
  left: 0;
}
.nav-cta {
  padding: 0.7rem 1.8rem !important;
  border: 1px solid var(--gold) !important;
  border-radius: 50px;
  color: var(--gold) !important;
  font-weight: 700 !important;
}
.nav-cta:hover,
.nav-cta.active {
  background: var(--gold) !important;
  color: var(--dark) !important;
}
.nav-cta::after {
  display: none !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: var(--transition);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu ul {
  text-align: center;
}
.mobile-menu ul li {
  margin: 1.5rem 0;
}
.mobile-menu ul a {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  transition: color 0.2s;
}
.mobile-menu ul a:hover {
  color: var(--gold);
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slide.active {
  opacity: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.slide.active img {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(212, 175, 55, 0.06) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 2rem;
}
.hero-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: var(--glass);
  backdrop-filter: blur(10px);
  animation: fadeDown 1s ease both;
}
.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  color: #fff;
  animation: fadeUp 1s 0.2s ease both;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-light);
  font-weight: 400;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  animation: fadeUp 1s 0.4s ease both;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fadeUp 1s 0.6s ease both;
}
.btn-primary {
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--dark);
  transition: var(--transition);
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
  background: var(--gold-light);
}
.btn-outline {
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 400;
  border: 1px solid rgba(245, 240, 232, 0.35);
  color: var(--cream);
  transition: var(--transition);
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(245, 240, 232, 0.08);
  transform: translateY(-3px);
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  animation: fadeUp 1s 0.8s ease both;
}
.stat {
  text-align: center;
}
.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}
.slider-dots {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 3;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}
.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  color: var(--text-muted);
  font-size: 0.75rem;
}
.scroll-line {
  width: 1px;
  height: 45px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* INNER PAGE HERO */
.page-hero {
  position: relative;
  padding: 12rem 0 8rem;
  background: var(--dark-2);
  text-align: center;
  overflow: hidden;
}
.page-hero .hero-overlay {
  background: radial-gradient(
    circle at center,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
}
.page-hero .hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 0.5rem;
}

/* ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 1rem 0 1.5rem;
}
.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.about-stat-item {
  background: var(--dark-3);
  padding: 1.5rem;
  border-radius: var(--r-md);
  border: 1px solid var(--glass-border);
  text-align: center;
}
.about-stat-item h3 {
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}
.about-stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.about-image .image-wrapper {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}
.about-image .image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--glass-border);
  border-radius: inherit;
  pointer-events: none;
}

/* VISION MISSION */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.vision-card {
  background: var(--dark-3);
  padding: 3rem 2rem;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  text-align: center;
}
.vision-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.vision-card .card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}
.vision-card h3 {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* SERVICES PAGE */
.services-grid-detailed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
.service-card-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-card-detailed:nth-child(even) {
  direction: ltr;
}
.service-card-detailed:nth-child(even) .service-info {
  direction: rtl;
}
.service-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-dark);
}
.service-info .icon-wrap {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.service-info h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.service-features {
  margin-top: 1.5rem;
}
.service-features li {
  position: relative;
  padding-right: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}
.service-features li::before {
  content: "✦";
  position: absolute;
  right: 0;
  color: var(--gold);
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
}
.contact-form-wrap {
  background: var(--dark-3);
  padding: 4rem;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.form-header {
  margin-bottom: 2.5rem;
}
.form-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.detail-card {
  display: flex;
  gap: 1.5rem;
  background: var(--dark-3);
  padding: 2rem;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.detail-card .icon {
  font-size: 2rem;
  color: var(--gold);
}
.detail-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--gold);
}
.map-wrap {
  margin-top: 1rem;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16/9;
}

@media (max-width: 1024px) {
  .about-grid,
  .service-card-detailed,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form-wrap {
    padding: 2.5rem;
  }
}
@media (max-width: 640px) {
  .vision-grid {
    grid-template-columns: 1fr;
  }
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* SERVICES */
.services {
  padding: 8rem 0;
  background: var(--dark);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: var(--r-lg);
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: var(--transition);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border);
  box-shadow: var(--shadow-gold);
}
.service-card:hover::before {
  opacity: 1;
}
.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  color: var(--gold);
  background: var(--gold-dim);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--cream);
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* PORTFOLIO */
.portfolio {
  padding: 8rem 0;
  background: var(--dark-2);
}
.portfolio-filters {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 700;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.portfolio-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: var(--transition);
}
.portfolio-item.large {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: unset;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item:hover img {
  transform: scale(1.08);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-tag {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  width: fit-content;
}
.portfolio-overlay h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.portfolio-overlay p {
  font-size: 0.85rem;
  color: var(--text-light);
}
.portfolio-item.hidden {
  display: none;
}

/* WHY US */
.why-us {
  padding: 8rem 0;
  background: var(--dark-3);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.why-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--r-lg);
  border: 1px solid rgba(212, 175, 55, 0.1);
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-6px);
}
.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--gold);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--cream);
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* TESTIMONIALS */
.testimonials {
  padding: 8rem 0;
  background: var(--dark);
  overflow: hidden;
}
.testimonials-track-wrapper {
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 calc(50% - 0.75rem);
  padding: 2.5rem;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.12);
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.quote-icon {
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.5;
  font-family: Georgia, serif;
}
.testimonial-card > p {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #5a3e00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.stars {
  margin-right: auto;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.2);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* CONTACT */
.contact {
  padding: 8rem 0;
  background: var(--dark-2);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.info-card {
  padding: 1.5rem;
  border-radius: var(--r-md);
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.info-card:hover {
  border-color: var(--glass-border);
}
.info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.info-card h4 {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.info-card p {
  font-size: 0.92rem;
  color: var(--text-light);
}
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* TikTok Button Styles */
.tiktok-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 20px 0;
}
.tiktok-bar-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff !important;
  padding: 12px 30px;
  text-decoration: none !important;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  gap: 12px;
  min-width: 250px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.tiktok-bar-button:hover {
  background-color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(254, 44, 85, 0.3);
}
.tiktok-bar-button svg {
  filter: drop-shadow(1.5px 0px 0px #25f4ee) drop-shadow(-1.5px 0px 0px #fe2c55);
}
.contact-form {
  background: var(--dark-3);
  padding: 2.5rem;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cream);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group select option {
  background: var(--dark-3);
  color: var(--cream);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.btn-submit {
  width: 100%;
  padding: 1rem;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--gold), #a87a1a);
  color: var(--dark);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--r-sm);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  text-align: center;
  font-size: 0.9rem;
}

/* FOOTER */
.footer {
  background: #080808;
  position: relative;
  overflow: hidden;
  padding: 5rem 0 2rem;
}
.footer-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(
    ellipse,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.8;
}
.footer-links h4,
.footer-contact-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links ul li {
  margin-bottom: 0.75rem;
}
.footer-links ul a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer-links ul a:hover {
  color: var(--gold);
}
.footer-contact-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom a {
  color: var(--gold);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* 404 PAGE */

/* 404 PAGE */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.page-404 h1 {
  font-size: 8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.page-404 h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0;
}
.page-404 p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* LEGAL PAGES */
.legal-page {
  padding: 8rem 2rem 5rem;
  max-width: 900px;
  margin: 0 auto;
}
.legal-page h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.legal-page .date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}
.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin: 2rem 0 0.75rem;
}
.legal-page p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-page ul {
  padding-right: 1.5rem;
  margin-bottom: 1rem;
}
.legal-page ul li {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  list-style: disc;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-item.large {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/7;
  }
}
@media (max-width: 768px) {
  .nav-container {
    flex-direction: row-reverse;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .footer-brand p {
    margin: 1rem auto 0;
    max-width: none;
  }
  .footer .logo {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .about-stats-grid {
    justify-content: center;
  }
  .hero-stats {
    gap: 1.2rem;
  }
  .stat-num {
    font-size: 1.4rem;
  }
  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-item.large {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }
  .testimonial-card {
    flex: 0 0 100%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
  .contact-form {
    padding: 1.5rem;
  }
  .page-404 h1 {
    font-size: 5rem;
  }
}
