:root {
  --color-bg-dark: #052328;
  --color-bg-light: #ffffff;
  --color-accent-gold: #b1f200;
  --color-accent-gold-dark: #8cb800;
  --color-text-light: #f4f4f4;
  --color-text-muted: #a0aab2;
  --color-text-dark: #111111;

  --font-heading: 'Cinzel', serif;
  --font-body: 'DM Sans', sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-dark); /* Base for ripples */
  color: var(--color-text-light);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  user-select: none; /* Prevent text selection */
  -webkit-user-select: none;
}

/* Prevent image dragging */
img {
  -webkit-user-drag: none;
  pointer-events: none; /* Optional: completely disables image interaction */
}

/* Allow pointer events on specific clickable images like logos if needed */
.logo-link img {
  pointer-events: auto;
}

/* Custom Cursor */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-accent-gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate3d(-100px, -100px, 0);
  will-change: transform, width, height, background-color, border-color;
  transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}

/* RTL Support for Arabic */
[dir="rtl"] {
  text-align: right;
}
[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}
[dir="rtl"] .header-controls {
  flex-direction: row-reverse;
}
[dir="rtl"] .about-section,
[dir="rtl"] .case-study-card {
  flex-direction: row-reverse;
}
[dir="rtl"] .faq-question {
  flex-direction: row-reverse;
}
[dir="rtl"] .faq-question i {
  margin-right: auto;
  margin-left: 0;
}
[dir="rtl"] .btn i {
  margin-right: 0.5rem;
  margin-left: 0;
}
[dir="rtl"] .footer-content {
  flex-direction: row-reverse;
}
[dir="rtl"] .contact-wrapper {
  flex-direction: row-reverse;
}
[dir="rtl"] .case-study-card[style*="row-reverse"] {
  flex-direction: row !important;
}

.cursor.active {
  width: 60px;
  height: 60px;
  background-color: rgba(177, 242, 0, 0.1);
  border-color: rgba(177, 242, 0, 0.5);
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: var(--color-bg-dark);
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-logo {
  width: 120px;
  animation: pulseLogo 2s infinite ease-in-out;
}
@keyframes pulseLogo {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  margin-bottom: 1rem;
}

a, button, .gallery-item {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
  cursor: none;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(5, 35, 40, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-accent-gold);
}

.header-logo {
  height: 50px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  margin: 0 auto 1rem auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--color-text-light);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  transition: var(--transition-smooth);
  position: relative;
  padding-bottom: 5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-accent-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--color-accent-gold);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

#header-appointment-btn {
  background: transparent;
  border: 1px solid var(--color-accent-gold);
  color: var(--color-accent-gold);
  padding: 0.6rem 1.5rem;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  border-radius: 0;
  transition: all 0.4s ease;
  font-size: 0.9rem;
}

#header-appointment-btn:hover {
  background: var(--color-accent-gold);
  color: var(--color-bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.lang-switcher a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.lang-switcher a:hover, .lang-switcher a.active {
  color: var(--color-accent-gold);
}

.audio-btn {
  background: none;
  border: 1px solid var(--color-accent-gold);
  color: var(--color-accent-gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}
.audio-btn:hover {
  background: var(--color-accent-gold);
  color: var(--color-bg-dark);
}

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

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 35, 40, 0.4) 0%, rgba(5, 35, 40, 0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 0 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.5s;
}

.hero-subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-accent-gold);
  margin-bottom: 1rem;
  display: block;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2rem;
  color: var(--color-text-muted);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid var(--color-accent-gold);
  color: var(--color-accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--color-accent-gold);
  z-index: -1;
  transition: var(--transition-smooth);
}

.btn:hover {
  color: var(--color-bg-dark);
}

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

.btn.primary {
  background: var(--color-accent-gold);
  color: var(--color-bg-dark);
}
.btn.primary:hover {
  background: transparent;
  color: var(--color-accent-gold);
}

/* Water Canvas Wrapper */
.water-canvas-wrapper {
  position: relative;
}

/* Sections */
.section-padding {
  padding: 8rem 5%;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.reveal-text {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}

.section-title.active .reveal-text {
  transform: translateY(0);
  opacity: 1;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--color-accent-gold);
}

/* About Section */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 10;
}

.about-content {
  background: rgba(5, 35, 40, 0.8);
  padding: 3rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.05);
}

.about-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent-gold);
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}


.about-image-collage {
  position: relative;
  width: 100%;
  min-height: 400px;
}

.about-image-collage .portrait-img {
  width: 60%;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.about-image-collage .landscape-img {
  width: 70%;
  border-radius: 12px;
  position: absolute;
  bottom: -15%;
  right: 0;
  z-index: 1;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
  .about-image-collage {
    margin-top: 2rem;
    padding-bottom: 4rem;
  }
}

/* Services Grid (All viewable) */
.expertise-section {
  position: relative;
  z-index: 10;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-10px);
  border-color: var(--color-accent-gold);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--color-accent-gold);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  color: #fff;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-accent-gold);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Projects Gallery (CSS Grid) */
.projects-section {
  position: relative;
  z-index: 10;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* Awards Banner */
.awards-banner {
  background: rgba(5, 35, 40, 0.9);
  padding: 4rem 2rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  text-align: center;
}
.award-item {
  flex: 1;
  min-width: 250px;
}
.award-item i {
  font-size: 2.5rem;
  color: var(--color-accent-gold);
  margin-bottom: 1rem;
}
.award-item h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}
.award-item p {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5,35,40,0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 50%;
  background: linear-gradient(to top, rgba(5,35,40,0.95), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}
.gallery-overlay span {
  font-family: var(--font-heading);
  color: var(--color-accent-gold);
  font-size: 1.2rem;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* Case Studies Section */
.case-studies-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.case-study-card {
  display: flex;
  gap: 3rem;
  background: rgba(5, 35, 40, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  align-items: center;
}
.case-study-image {
  flex: 1;
  min-width: 40%;
}
.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}
.case-study-content {
  flex: 1;
  padding: 3rem;
}
.case-study-meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.5rem;
}
.case-study-content p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.6;
}
.case-study-content strong {
  color: var(--color-accent-gold);
}

@media (max-width: 900px) {
  .case-study-card, .case-study-card[style*="row-reverse"] {
    flex-direction: column !important;
  }
  .case-study-image img {
    min-height: 300px;
  }
}

/* Video Showcase Section */
.video-showcase-section {
  position: relative;
  z-index: 10;
  background: rgba(5, 35, 40, 0.5);
}

.video-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(177, 242, 0, 0.8);
  color: var(--color-bg-dark);
  border: none;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto; /* Ensure it is clickable despite anti-copy rules */
}

.video-container:hover .video-play-btn {
  opacity: 1;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(177, 242, 0, 1);
}

/* Global Reach Section */
.global-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.global-text-col p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .global-text-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--color-text-light);
  font-size: 1.2rem;
  font-family: var(--font-heading);
  text-align: left;
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}
.faq-question:hover {
  color: var(--color-accent-gold);
}
.faq-question i {
  color: var(--color-accent-gold);
  transition: transform 0.3s ease;
}
.faq-question.active i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
}

/* Form Tabs */
.form-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.tab-btn.active {
  color: var(--color-accent-gold);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent-gold);
  transition: var(--transition-smooth);
}

.tab-btn.active::after {
  width: 100%;
}

.tab-btn:hover {
  color: #fff;
}

.tab-content {
  display: none;
  animation: fadeUp 0.5s ease forwards;
}

.tab-content.active {
  display: flex;
}

.contact-form {
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-group label {
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-accent-gold);
}

.form-group input,
.form-group textarea,
.custom-select-wrapper select {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
  width: 100%;
}

/* Custom Select Styling */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.custom-select-wrapper select option {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

.custom-select-wrapper::after {
  content: '\f107'; /* FontAwesome down arrow */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
  color: var(--color-accent-gold);
  pointer-events: none;
}

/* Fix calendar icon color on date/time inputs */
::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition-smooth);
}
::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus,
.custom-select-wrapper select:focus {
  outline: none;
  border-color: var(--color-accent-gold);
  background: rgba(255, 255, 255, 0.08);
}

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

.btn.primary {
  background: var(--color-accent-gold);
  color: var(--color-bg-dark);
  padding: 1.2rem 2.5rem;
  border: none;
  font-weight: 600;
  margin-top: 1rem;
  font-family: var(--font-heading);
}
.btn.primary:hover {
  background: var(--color-text-light);
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Confirmation Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--color-bg-dark);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid var(--color-accent-gold);
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-content h3 {
  color: var(--color-accent-gold);
  margin-bottom: 1.5rem;
  text-align: center;
}

#modal-details {
  margin-bottom: 2rem;
}

.modal-row {
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-row:last-child {
  border-bottom: none;
}

.modal-row strong {
  color: var(--color-accent-gold);
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.modal-row span {
  display: block;
  font-size: 1rem;
  white-space: pre-wrap;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Footer */
footer {
  text-align: center;
  padding: 4rem 5%;
  position: relative;
  z-index: 10;
  background: var(--color-bg-dark);
}

/* Scroll Progress */
#scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 9999; /* Below cursor */
}

#scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--color-accent-gold);
  transition: width 0.1s ease-out;
}

#scroll-percentage {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-accent-gold);
  z-index: 1000;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  cursor: pointer;
}

#scroll-percentage:hover {
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(177, 242, 0, 0.5);
}

#scroll-percentage i {
  font-size: 0.8rem;
  margin-left: 0.3rem;
  opacity: 0.7;
}

#scroll-percentage.visible {
  opacity: 1;
}

/* Quick Contact Widget */
.quick-contact-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.quick-contact-btn {
  background: var(--color-accent-gold);
  color: var(--color-bg-dark);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  transition: var(--transition-smooth);
}

.quick-contact-btn:hover {
  transform: scale(1.1);
}

.quick-contact-menu {
  background: rgba(5, 35, 40, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(177, 242, 0, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  width: 280px;
  margin-bottom: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

.quick-contact-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-header {
  font-family: var(--font-heading);
  color: var(--color-accent-gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  color: var(--color-text-light);
  border-radius: 8px;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.menu-item:hover {
  background: rgba(255,255,255,0.05);
  transform: translateX(5px);
}

.menu-icon {
  background: rgba(177, 242, 0, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item i {
  color: var(--color-accent-gold);
  font-size: 1.2rem;
}

.menu-text {
  display: flex;
  flex-direction: column;
}

.menu-text .title {
  font-weight: 600;
  color: #fff;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.menu-text .detail {
  font-size: 0.8rem;
  color: var(--color-accent-gold);
}

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero h1 { font-size: 3rem; }
  .about-section, .contact-section { grid-template-columns: 1fr; }
}
