/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== CSS RESET & VARIABLES ===== */
:root {
  --black: #343434;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --gray-100: #e8e8e8;
  --gray-200: #d0d0d0;
  --gray-300: #a0a0a0;
  --gray-500: #666666;
  --gray-700: #333333;
  --gray-900: #2a2a2a;
  --gold: #DAA520;
  --gold-light: #e8c44a;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
  --font-accent: 'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body::after {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: url('images/watermark.jpg') center/contain no-repeat;
  opacity: 0.45;
  z-index: -1;
  pointer-events: none;
  filter: drop-shadow(0 0 60px rgba(218, 165, 32, 0.5)) brightness(1.2) contrast(1.1);
  -webkit-mask-image: radial-gradient(circle, black 30%, transparent 70%);
  mask-image: radial-gradient(circle, black 30%, transparent 70%);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #010101;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo-image {
  width: 250px;
  height: 250px;
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.preloader-logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

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

.preloader-logo span.amp {
  color: var(--gold);
  margin: 0 6px;
}

.preloader-bar-container {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.preloader-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--white), var(--gold));
  border-radius: 2px;
  animation: preloaderProgress 2s ease forwards 0.5s;
}

@keyframes preloaderProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
  background: rgba(1, 1, 1, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(52,52,52,0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo-icon {
  width: 45px;
  height: 45px;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

.nav-logo:hover .nav-logo-icon {
  background: var(--white);
  color: var(--black);
}

.nav-logo-image {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nav-logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
}

.nav-logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--gray-300);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
}

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

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

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

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(52, 52, 52, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 15px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 25px;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.05);
  color: var(--gold);
  padding-left: 30px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-smooth);
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52,52,52,0.97);
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  padding: 15px 0;
  display: block;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

.mobile-nav.active a {
  animation: fadeInUp 0.5s ease forwards;
}

.mobile-nav.active a:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav.active a:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav.active a:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav.active a:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav.active a:nth-child(5) { animation-delay: 0.3s; }
.mobile-nav.active a:nth-child(6) { animation-delay: 0.35s; }
.mobile-nav.active a:nth-child(7) { animation-delay: 0.4s; }
.mobile-nav.active a:nth-child(8) { animation-delay: 0.45s; }

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  animation: heroZoom 8s ease-in-out infinite alternate;
}

.hero-slide.active img {
  animation: heroZoom 8s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(52,52,52,0.4) 0%,
    rgba(52,52,52,0.2) 40%,
    rgba(52,52,52,0.5) 80%,
    rgba(52,52,52,0.9) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease 2.5s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 3px;
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeInUp 1s ease 2.8s forwards;
}

.hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--white), var(--gray-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 50px;
  border: 1px solid var(--white);
  color: var(--white);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 1s ease 3.1s forwards;
  transition: var(--transition-smooth);
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  transition: left 0.4s ease;
  z-index: -1;
}

.hero-cta:hover {
  color: var(--black);
}

.hero-cta:hover::before {
  left: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp 1s ease 3.4s forwards;
}

.hero-scroll-indicator span {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-300);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scrollLineAnim 2s ease infinite;
}

@keyframes scrollLineAnim {
  0% { top: -100%; }
  50% { top: 0; }
  100% { top: 100%; }
}

/* Hero slider dots */
.hero-dots {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 3;
  display: flex;
  gap: 10px;
  opacity: 0;
  animation: fadeInUp 1s ease 3.4s forwards;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.hero-dot.active {
  border-color: var(--gold);
}

.hero-dot.active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 120px 60px;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.2;
}

.section-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 25px auto 0;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: rgba(85, 62, 33, 0.85);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--gray-300);
  font-weight: 300;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 60px;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  color: var(--gold);
  font-size: 2rem;
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ===== CLIENTS SECTION ===== */
.clients {
  background: rgba(0, 0, 0, 0.85);
  padding: 80px 60px;
}

.clients-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.client-logo {
  width: 100px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  transition: var(--transition-smooth);
  filter: grayscale(100%) brightness(2);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gray-300);
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
  color: var(--gold);
}

/* ===== PROJECTS SECTION ===== */
.projects {
  background: rgba(85, 62, 33, 0.85);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  group: true;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(52,52,52,0.9) 0%,
    rgba(52,52,52,0.3) 50%,
    rgba(52,52,52,0.1) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition-smooth);
}

.project-card:hover .project-overlay {
  background: linear-gradient(
    to top,
    rgba(52,52,52,0.95) 0%,
    rgba(52,52,52,0.5) 50%,
    rgba(52,52,52,0.2) 100%
  );
}

.project-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.project-card:hover .project-name {
  transform: translateY(0);
  color: var(--gold);
}

.project-desc {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--gray-300);
  margin-top: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.project-card:hover .project-desc {
  opacity: 1;
  transform: translateY(0);
}

.project-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-10px);
  transition: var(--transition-smooth);
}

.project-card:hover .project-arrow {
  opacity: 1;
  transform: translateY(0);
}

.project-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: rgba(0, 0, 0, 0.85);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 0 40px;
  animation: fadeIn 0.8s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--gold);
  font-family: var(--font-heading);
  margin-bottom: 20px;
  opacity: 0.5;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--gray-200);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 35px;
}

.testimonial-author {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
}

.testimonial-role {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 50px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border: 1px solid var(--gray-500);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.testimonial-dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

.testimonial-arrows {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonial-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  background: transparent;
  color: var(--white);
  font-size: 1.2rem;
}

.testimonial-arrow:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

/* ===== SERVICES ===== */
.services {
  background: rgba(85, 62, 33, 0.85);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

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

.service-card:hover img {
  transform: scale(1.08);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(52,52,52,0.95) 0%,
    rgba(52,52,52,0.4) 40%,
    rgba(52,52,52,0.2) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 30px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-overlay {
  background: linear-gradient(
    to top,
    rgba(52,52,52,0.98) 0%,
    rgba(52,52,52,0.6) 40%,
    rgba(52,52,52,0.3) 100%
  );
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--gold);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  transform: translateY(-5px);
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray-300);
  font-weight: 300;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.service-card:hover .service-desc {
  opacity: 1;
  max-height: 100px;
  margin-top: 5px;
}

/* ===== OUR STORY ===== */
.story {
  background: rgba(0, 0, 0, 0.85);
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.story-paragraph {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 2;
  color: var(--gray-300);
  font-weight: 300;
  text-align: center;
}

.story-highlight-text {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  float: left;
  margin-right: 15px;
  line-height: 0.8;
  margin-top: 8px;
}

.story-highlight {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  line-height: 1.6;
  font-style: italic;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ===== TEAM SECTION ===== */
.team {
  background: rgba(85, 62, 33, 0.85);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.team-image {
  width: 100%;
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 300px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: grayscale(30%);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.team-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.team-card:hover .team-image::after {
  transform: scaleX(1);
}

.team-info {
  padding: 20px;
  background: rgba(0,0,0,0.5);
  min-height: 140px;
}

.team-info p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray-300);
  font-weight: 300;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.team-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-info .team-role {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  display: block;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(218,165,32,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-300);
  font-weight: 300;
  margin-bottom: 50px;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.contact-item {
  text-align: center;
}

.contact-item-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.contact-item a {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--gray-200);
  margin-bottom: 5px;
  transition: var(--transition-fast);
}

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

.contact-address {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-address .address-icon {
  color: var(--gold);
  margin-right: 8px;
}

/* ===== CONTACT SECTION ===== */
#contactus {
  padding: 20px 0;
}

#contactus .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

#contactus .text-center {
  text-align: center;
}

#contactus .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}

#contactus .col-lg-8 {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.contact-card-box {
  background: rgba(24,18,13,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(174,132,73,0.15);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  width: auto !important;
  float: none !important;
}

.contact-form-col {
  display: flex;
  flex-direction: column;
  flex: 1 1 340px;
  width: auto !important;
  float: none !important;
}

.contact-fields-row {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
}

.contact-field-half {
  flex: 1;
  box-sizing: border-box;
}

.contact-field-left {
  padding-right: 0;
}

.contact-field-right {
  padding-left: 0;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 14px 18px;
  background: #18120D;
  border: 1px solid rgba(174, 132, 73, 0.15);
  border-radius: 12px;
  color: #E3C287;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
  font-family: var(--font-body);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #AE8449;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #AE8449;
}

.contact-input:hover,
.contact-textarea:hover {
  border-color: #AE8449;
}

.contact-textarea {
  resize: vertical;
  min-height: 90px;
  margin-bottom: 18px;
}

.contact-submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #AE8449, #E3C287, #7E5B2F);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
}

.contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(174, 132, 73, 0.4);
}

/* Social Media Icons */
.contact-social-row {
  margin-top: auto;
  display: flex;
  gap: 14px;
  align-items: flex-end;
  min-height: 65px;
}

.contact-social-row a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
}

/* ===== FOOTER ===== */
.footer {
  background: rgba(85, 62, 33, 0.85);
  padding: 30px 60px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-text {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E3C287;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(10) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(11) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(12) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* ===== GENERAL ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== PARALLAX DIVIDER ===== */
.parallax-divider {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-divider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
}

.parallax-divider .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
}

.parallax-divider .divider-text {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 42px;
  height: 42px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  box-shadow: 0 5px 25px rgba(218,165,32,0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(218,165,32,0.5);
}



/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .section {
    padding: 100px 40px;
  }
  
  .team-grid {
    gap: 40px;
  }
}

@media screen and (max-width: 992px) {
  .navbar {
    padding: 15px 30px;
  }
  
  .navbar.scrolled {
    padding: 10px 30px;
  }
  
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .mobile-nav {
    display: flex;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  
  .section {
    padding: 80px 30px;
  }
  
  .about-stats {
    gap: 40px;
  }
  
  .contact-details {
    gap: 40px;
  }
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 4px;
  }
  
  .hero-cta {
    padding: 14px 35px;
    font-size: 0.7rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 30px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  
  .team-image {
    min-height: 300px;
  }
  
  .team-image img {
    object-fit: contain;
    background: #1a1a1a;
  }
  
  .story-highlight {
    font-size: 1.3rem;
  }
  
  .parallax-divider {
    height: 250px;
  }
  
  .parallax-divider .divider-text {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }
  
  .hero-dots {
    right: 20px;
    bottom: 20px;
  }
  
  .hero-scroll-indicator {
    bottom: 20px;
  }
  
  .section {
    padding: 60px 20px;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .footer {
    padding: 20px;
  }

}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .nav-logo-text {
    font-size: 0.95rem;
  }
  
  .nav-logo-icon {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .contact-details {
    flex-direction: column;
    gap: 30px;
  }
}

/* ===== SMOOTH SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* ===== SELECTION ===== */
::selection {
  background: var(--gold);
  color: var(--black);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.watsapp-chat {
  position: fixed;
  right: 30px;
  bottom: 90px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.watsapp-chat.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.watsapp-chat a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #25D366, #1EBE5D);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  animation: pulse-whatsapp 2s infinite;
  transition: var(--transition-fast);
}

.watsapp-chat a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.watsapp-chat a i {
  font-size: 22px;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== FLOATING SOCIAL FAB ===== */
.floating-social-fab {
  position: fixed;
  right: 30px;
  bottom: 155px;
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-social-fab.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-toggle {
  width: 42px;
  height: 42px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
  transition: var(--transition-fast);
  z-index: 2;
}

.fab-toggle:hover {
  transform: scale(1.05);
}

.floating-social-fab.active .fab-toggle {
  transform: rotate(45deg);
  background: var(--white);
}

.fab-menu {
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  position: absolute;
  bottom: 60px;
  visibility: hidden;
  pointer-events: none;
}

.floating-social-fab.active .fab-menu {
  visibility: visible;
  pointer-events: auto;
}

.fab-item {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.floating-social-fab.active .fab-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.floating-social-fab.active .fab-item:nth-child(1) { transition-delay: 0.05s; }
.floating-social-fab.active .fab-item:nth-child(2) { transition-delay: 0.1s; }
.floating-social-fab.active .fab-item:nth-child(3) { transition-delay: 0.15s; }

.fab-item:hover {
  transform: scale(1.1);
  color: #fff;
}

.fab-fb { background: #1877F2; }
.fab-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.fab-in { background: #0077b5; }

/* ===== RESPONSIVE WATERMARK ===== */
@media (max-width: 768px) {
  body::after {
    width: 90vw;
    height: 90vw;
  }
}
