/* ===== IHIRWE STUDIO - Premium Photography Website ===== */
/* ===== CSS Variables & Reset ===== */
:root {
  --primary: #c8a97e;
  --primary-dark: #a8895e;
  --primary-light: #e8d5b5;
  --dark: #0a0a0a;
  --dark-2: #141414;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;
  --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-gold: 0 8px 30px rgba(200,169,126,0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

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

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

picture {
  display: block;
  width: 100%;
  height: 100%;
}

picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

*, *::before, *::after {
  max-width: 100vw;
}

iframe {
  max-width: 100%;
}

blockquote {
  max-width: 100%;
}

ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.5s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.6s; }

/* ===== Preloader ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  animation: preloader-force-hide 0.5s ease 3s forwards;
}
@keyframes preloader-force-hide {
  to { opacity: 0; visibility: hidden; pointer-events: none; z-index: -1; }
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: none;
}
.preloader-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  animation: pulse-glow 1.5s ease-in-out infinite;
}
.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--dark-3);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
  animation: preloader-slide 1.2s ease-in-out infinite;
}
@keyframes preloader-slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(500%); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(200,169,126,0.3); }
  50% { box-shadow: 0 0 40px rgba(200,169,126,0.6); }
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  transition: var(--transition);
}
.nav-logo:hover img {
  box-shadow: var(--shadow-gold);
  transform: scale(1.05);
}
.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}
.nav-logo .logo-accent {
  color: var(--primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-300);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--dark) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--dark) !important;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide picture {
  position: absolute;
  inset: 0;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: hero-zoom 8s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.5) 0%,
    rgba(10,10,10,0.3) 40%,
    rgba(10,10,10,0.7) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,126,0.15);
  border: 1px solid rgba(200,169,126,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
  animation: fadeInDown 1s ease 0.3s both;
}
.hero-badge svg {
  width: 16px;
  height: 16px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.5s both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text {
  font-size: 1.1rem;
  color: var(--gray-300);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.7s both;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}
.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 12px;
}
.hero-indicator {
  width: 40px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
}
.hero-indicator.active {
  background: var(--primary);
  width: 60px;
}
.scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s ease infinite;
}
.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gray-400);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--primary);
  border-radius: 3px;
  animation: scroll-wheel 1.5s ease infinite;
}
@keyframes scroll-wheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn svg {
  width: 18px;
  height: 18px;
  transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--dark);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200,169,126,0.4);
}
.btn-primary:hover svg {
  transform: translateX(4px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}
.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
  gap: 12px;
}
.btn-white {
  background: var(--white);
  color: var(--dark);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ===== Section Styles ===== */
.section {
  padding: 100px 0;
  position: relative;
}
.section-dark {
  background: var(--dark-2);
}
.section-darker {
  background: var(--dark-3);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-label svg {
  width: 16px;
  height: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--primary);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
}
.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 3px;
  margin: 20px auto 0;
}

/* ===== About Section ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrapper {
  position: relative;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  background: #1a1a1a;
  border-radius: var(--radius-lg);
  transition: transform 0.8s ease;
  image-rendering: auto;
}
.about-image:hover img {
  transform: scale(1.05);
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  transform: translate(15px, 15px);
  z-index: -1;
  transition: var(--transition);
}
.about-image-wrapper:hover .about-image::after {
  transform: translate(10px, 10px);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--dark);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-badge .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-content p {
  color: var(--gray-400);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 30px 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--dark-3);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200,169,126,0.1);
  transition: var(--transition);
}
.stat-item:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===== Services Section ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,169,126,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: rgba(200,169,126,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transform: scale(1.1);
}
.service-card:hover .service-icon svg {
  color: var(--dark);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== Portfolio Section ===== */
.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  background: transparent;
  color: var(--gray-400);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--dark);
  border-color: var(--primary);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.portfolio-item:hover img {
  transform: scale(1.1);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.9) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.portfolio-info span {
  font-size: 0.8rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Testimonials ===== */
.testimonials-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonial-card {
  background: var(--dark-3);
  border: 1px solid rgba(200,169,126,0.1);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  display: none;
}
.testimonial-card.active {
  display: block;
  animation: fadeInUp 0.6s ease;
}
.testimonial-quote {
  font-size: 3rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--font-display);
}
.testimonial-text {
  font-size: 1.1rem;
  color: var(--gray-300);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  font-weight: 600;
  color: var(--white);
}
.testimonial-role {
  font-size: 0.85rem;
  color: var(--primary);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dark-4);
  border: 1px solid var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}
.testimonial-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

/* ===== Booking & Contact Forms ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.form-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.form-card .form-desc {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-300);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200,169,126,0.1);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a3a3a3' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  margin-top: 8px;
}

/* ===== Follow Us / Social Embeds Section ===== */
.instagram-section {
  background: var(--dark-2);
  padding: 80px 0;
}
.social-embeds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.social-embed-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.social-embed-card:hover {
  border-color: rgba(200,169,126,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.social-embed-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.social-embed-header svg {
  color: var(--primary);
  flex-shrink: 0;
}
.social-embed-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}
.instagram-embed-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--dark-4);
  flex: 1;
  min-height: 0;
}
.instagram-embed-wrapper blockquote {
  max-width: 100% !important;
  width: 100% !important;
  min-width: 0 !important;
}
.youtube-embed-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--dark-4);
  flex: 1;
  min-height: 0;
}
.youtube-embed-wrapper iframe {
  display: block;
  min-height: 400px;
  width: 100%;
}
.social-embed-card .btn {
  flex-shrink: 0;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .social-embeds-grid {
    grid-template-columns: 1fr;
  }
  .social-embed-card {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .social-embed-card {
    padding: 16px;
  }
}
.youtube-placeholder:hover {
  border-color: rgba(255,0,0,0.3) !important;
  background: linear-gradient(135deg, rgba(34,34,34,0.9), rgba(26,26,26,0.95)) !important;
}
.youtube-placeholder:hover div:first-child {
  transform: scale(1.1);
}

/* ===== Contact Info ===== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.contact-info-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}
.contact-info-card:hover {
  border-color: rgba(200,169,126,0.2);
  transform: translateY(-4px);
}
.contact-info-card svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  margin-bottom: 16px;
}
.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.contact-info-card p {
  color: var(--gray-400);
  font-size: 0.9rem;
}
.contact-info-card a {
  color: var(--primary);
}
.contact-info-card a:hover {
  text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin: 16px 0 20px;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a svg {
  width: 18px;
  height: 18px;
  color: var(--gray-400);
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.footer-social a:hover svg {
  color: var(--dark);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--white);
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.85rem;
}
.footer-bottom a {
  color: var(--primary);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-whatsapp 2s ease infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: var(--dark-3);
  border: 1px solid rgba(200,169,126,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}
.back-to-top:hover svg {
  color: var(--dark);
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover {
  background: var(--primary);
  color: var(--dark);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== Counter Animation ===== */
.counter-section {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  padding: 60px 0;
  border-top: 1px solid rgba(200,169,126,0.1);
  border-bottom: 1px solid rgba(200,169,126,0.1);
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.counter-item {
  padding: 20px;
}
.counter-item svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  margin-bottom: 12px;
}
.counter-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.counter-value span {
  color: var(--primary);
}
.counter-label {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Responsive ===== */

/* All sections must not overflow */
section, .hero, .counter-section, footer {
  overflow: hidden;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--dark-2);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    z-index: 10001;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    font-size: 1rem;
  }
  .menu-toggle {
    display: flex;
  }
  
  .hero { min-height: 100svh; min-height: 600px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-text { font-size: 0.95rem; max-width: 100%; }
  .hero-content { padding: 0 16px; max-width: 100%; }
  .hero-buttons { flex-direction: column; align-items: center; width: 100%; }
  .hero-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-badge { font-size: 0.7rem; letter-spacing: 2px; padding: 6px 14px; }
  .scroll-indicator { display: none; }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image img { height: 350px; }
  .about-badge { right: 10px; bottom: -15px; font-size: 0.75rem; padding: 10px 16px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .about-stats .stat-item { padding: 12px 8px; }
  
  .services-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .portfolio-filters { gap: 6px; flex-wrap: wrap; justify-content: center; }
  .filter-btn { padding: 8px 14px; font-size: 0.72rem; }
  .portfolio-cta .btn { font-size: 0.85rem; padding: 14px 28px; }
  
  .section-title { font-size: 1.8rem; }
  .section-subtitle { font-size: 0.9rem; padding: 0; }
  
  .form-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  
  .contact-info-grid { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-value { font-size: 2rem; }
  .counter-section { padding: 30px 0; }
  
  .instagram-section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-text { font-size: 0.88rem; }
  .section-title { font-size: 1.4rem; }
  .section-subtitle { font-size: 0.85rem; }
  .about-stats { grid-template-columns: 1fr; }
  .about-image img { height: 280px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-filters { gap: 4px; }
  .filter-btn { padding: 6px 12px; font-size: 0.68rem; }
  .stat-item { padding: 14px; }
  .whatsapp-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .back-to-top { width: 40px; height: 40px; bottom: 16px; left: 16px; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .counter-value { font-size: 1.6rem; }
  .counter-label { font-size: 0.72rem; }
  .form-card { padding: 18px; }
  .btn { padding: 12px 24px; font-size: 0.8rem; }
  .btn-lg { padding: 14px 28px; font-size: 0.88rem; }
  .hero-badge { font-size: 0.65rem; letter-spacing: 1.5px; padding: 5px 12px; }
  .social-embed-header h3 { font-size: 1.1rem; }
  .footer-grid { gap: 24px; }
}

@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero h1 { font-size: 1.5rem; }
  .section-title { font-size: 1.25rem; }
  .counter-grid { grid-template-columns: 1fr; }
  .about-badge { display: none; }
  .hero-badge { font-size: 0.6rem; }
}

/* ===== Utility ===== */
.text-gold { color: var(--primary); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.hidden { display: none; }

/* ===== Mobile Menu Overlay ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ===== Smooth image loading ===== */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.5s ease;
}
img[loading="lazy"].loaded,
img.loaded {
  opacity: 1;
}

/* ===== Parallax subtle effect ===== */
.parallax-bg {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* ===== Gradient text utility ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Shimmer effect on hover ===== */
.shimmer {
  position: relative;
  overflow: hidden;
}
.shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: left 0.6s ease;
}
.shimmer:hover::after {
  left: 100%;
}

/* ===== PREMIUM ENHANCEMENTS ===== */

/* ===== Glassmorphism Cards ===== */
.glass {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ===== Animated Gradient Border ===== */
.glow-border {
  position: relative;
}
.glow-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--primary), transparent, var(--primary-light), transparent);
  background-size: 300% 300%;
  animation: gradient-rotate 4s ease infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.glow-border:hover::before {
  opacity: 1;
}
@keyframes gradient-rotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== Floating Particles Background ===== */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(200,169,126,0.15), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(200,169,126,0.1), transparent),
    radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,0.1), transparent),
    radial-gradient(1px 1px at 80% 60%, rgba(200,169,126,0.08), transparent),
    radial-gradient(2px 2px at 10% 80%, rgba(255,255,255,0.06), transparent),
    radial-gradient(1px 1px at 70% 40%, rgba(200,169,126,0.12), transparent);
  animation: float-particles 20s linear infinite;
  pointer-events: none;
}
@keyframes float-particles {
  0% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-10px) translateX(5px); }
  50% { transform: translateY(-5px) translateX(-5px); }
  75% { transform: translateY(-15px) translateX(3px); }
  100% { transform: translateY(0) translateX(0); }
}

/* ===== Enhanced Navbar ===== */
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,126,0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.navbar.scrolled::after {
  opacity: 1;
}

/* ===== Premium Service Cards ===== */
.service-card {
  background: linear-gradient(145deg, rgba(26,26,26,0.9), rgba(20,20,20,0.95));
  backdrop-filter: blur(10px);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 0.4s ease;
}
.service-card:hover::after {
  width: 60%;
}
.service-card:hover {
  background: linear-gradient(145deg, rgba(30,30,30,0.95), rgba(26,26,26,1));
}

/* ===== Enhanced Portfolio Items ===== */
.portfolio-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  z-index: 2;
  transition: border-color 0.4s ease;
  pointer-events: none;
}
.portfolio-item:hover::before {
  border-color: rgba(200,169,126,0.4);
}
.portfolio-overlay {
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(10,10,10,0.4) 60%,
    rgba(10,10,10,0.95) 100%
  );
}
.portfolio-info h4 {
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.portfolio-item:hover .portfolio-info h4 {
  transform: translateY(0);
}
.portfolio-info span {
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
  display: inline-block;
}
.portfolio-item:hover .portfolio-info span {
  transform: translateY(0);
  opacity: 1;
}

/* ===== Magnetic Button Effect ===== */
.btn-primary {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn-primary:active::after {
  width: 300px;
  height: 300px;
}

/* ===== Glowing Input Focus ===== */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200,169,126,0.1), 0 0 20px rgba(200,169,126,0.05);
  background: rgba(34,34,34,0.8);
}

/* ===== Enhanced About Section ===== */
.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,169,126,0.1), transparent);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: var(--radius-lg);
}
.about-image:hover::before {
  opacity: 1;
}
.about-badge {
  animation: float-badge 3s ease-in-out infinite;
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== Testimonial Card Glow ===== */
.testimonial-card {
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(200,169,126,0.03), transparent 30%);
  animation: testimonial-glow 8s linear infinite;
}
@keyframes testimonial-glow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.testimonial-card > * {
  position: relative;
  z-index: 1;
}

/* ===== Contact Info Card Hover ===== */
.contact-info-card {
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.contact-info-card:hover::before {
  transform: scaleX(1);
}
.contact-info-card svg {
  transition: var(--transition);
}
.contact-info-card:hover svg {
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 4px 8px rgba(200,169,126,0.3));
}

/* ===== Footer Social Hover Glow ===== */
.footer-social a {
  position: relative;
}
.footer-social a::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.3s ease;
  z-index: -1;
}
.footer-social a:hover::after {
  opacity: 0.3;
}

/* ===== Section Divider Decorations ===== */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,126,0.15), transparent);
}

/* ===== Animated Gold Line ===== */
.gold-line {
  position: relative;
  overflow: hidden;
}
.gold-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: gold-shimmer 3s ease infinite;
}
@keyframes gold-shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* ===== Counter Item Hover ===== */
.counter-item {
  transition: var(--transition);
  border-radius: var(--radius-md);
  position: relative;
}
.counter-item:hover {
  background: rgba(200,169,126,0.05);
  transform: translateY(-4px);
}
.counter-item svg {
  transition: var(--transition);
}
.counter-item:hover svg {
  transform: scale(1.2);
  filter: drop-shadow(0 4px 12px rgba(200,169,126,0.4));
}

/* ===== Filter Button Ripple ===== */
.filter-btn {
  position: relative;
  overflow: hidden;
}
.filter-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(200,169,126,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}
.filter-btn:active::after {
  width: 200px;
  height: 200px;
}

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  z-index: 10001;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(200,169,126,0.5);
}

/* ===== Enhanced Preloader ===== */
.preloader {
  background: radial-gradient(circle at center, var(--dark-2), var(--dark));
}
.preloader-logo {
  border: 3px solid var(--primary);
}

/* ===== Text Selection ===== */
::selection {
  background: rgba(200,169,126,0.3);
  color: var(--white);
}
::-moz-selection {
  background: rgba(200,169,126,0.3);
  color: var(--white);
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--dark-4);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ===== Hover Lift for Form Cards ===== */
.form-card {
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.form-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,169,126,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.form-card:hover::before {
  transform: scaleX(1);
}

/* ===== Stat Item Pulse ===== */
.stat-number {
  position: relative;
}
.stat-item:hover .stat-number {
  animation: stat-pulse 0.6s ease;
}
@keyframes stat-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* ===== Nav CTA Glow ===== */
.nav-cta {
  position: relative;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.3s ease;
  z-index: -1;
}
.nav-cta:hover::before {
  opacity: 0.4;
}

/* ===== Hero Content Text Shadow ===== */
.hero h1 {
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-text {
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* ===== Lightbox Enhanced ===== */
.lightbox img {
  animation: lightbox-zoom 0.4s ease;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
@keyframes lightbox-zoom {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ===== WhatsApp Float Tooltip ===== */
.whatsapp-float::before {
  content: 'Chat with us';
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark-3);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}
.whatsapp-float::after {
  content: '';
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark-3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
  opacity: 1;
  visibility: visible;
}

/* ===== Section Label Animation ===== */
.section-label {
  position: relative;
  overflow: hidden;
}
.section-label::before {
  animation: label-line-left 2s ease infinite alternate;
}
.section-label::after {
  animation: label-line-right 2s ease infinite alternate;
}
@keyframes label-line-left {
  0% { width: 20px; opacity: 0.5; }
  100% { width: 40px; opacity: 1; }
}
@keyframes label-line-right {
  0% { width: 20px; opacity: 0.5; }
  100% { width: 40px; opacity: 1; }
}

/* ===== Portfolio Grid Masonry-like on large screens ===== */
@media (min-width: 1025px) {
  .portfolio-item:nth-child(1) { grid-row: span 1; }
  .portfolio-item:nth-child(4) { grid-row: span 1; }
  
  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
  }
  .portfolio-item:nth-child(2),
  .portfolio-item:nth-child(5) {
    grid-row: span 2;
  }
  .portfolio-item:nth-child(2) img,
  .portfolio-item:nth-child(5) img {
    height: 100%;
  }
}

/* ===== Smooth page entrance ===== */
body {
  animation: page-enter 0.6s ease;
}
@keyframes page-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== Focus Visible for Accessibility ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* ===== Image Grain Overlay for Premium Feel ===== */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* ===== ULTRA PREMIUM ENHANCEMENTS ===== */

/* ===== Glassmorphism Navigation on Scroll ===== */
.navbar.scrolled {
  background: rgba(10,10,10,0.75) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(200,169,126,0.08);
}

/* ===== Animated Gradient Text Shimmer ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--primary), var(--primary-light));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shimmer 6s ease infinite;
}
@keyframes gradient-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== Hero Slide Ken Burns Effect ===== */
.hero-slide img {
  animation: ken-burns 20s ease-in-out infinite alternate;
}
.hero-slide:nth-child(2) img {
  animation-delay: -7s;
  animation-direction: alternate-reverse;
}
.hero-slide:nth-child(3) img {
  animation-delay: -14s;
}
@keyframes ken-burns {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.08) translate(-1%, -1%); }
  100% { transform: scale(1.04) translate(1%, 0.5%); }
}

/* ===== Hero Indicator Pulse ===== */
.hero-indicator.active {
  position: relative;
}
.hero-indicator.active::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  animation: indicator-pulse 2s ease-in-out infinite;
}
@keyframes indicator-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.5); opacity: 0; }
}

/* ===== Service Card Icon Float ===== */
.service-icon {
  transition: var(--transition);
}
.service-card:hover .service-icon {
  animation: icon-float 0.6s ease;
}
@keyframes icon-float {
  0% { transform: translateY(0); }
  40% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* ===== Portfolio Item Tilt on Hover ===== */
.portfolio-item {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
}
.portfolio-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

/* ===== Portfolio Overlay Slide Up ===== */
.portfolio-overlay {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

/* ===== Portfolio CTA Button Glow ===== */
.portfolio-cta .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 4px 20px rgba(200,169,126,0.3);
  transition: all 0.4s ease;
}
.portfolio-cta .btn-primary:hover {
  box-shadow: 0 8px 40px rgba(200,169,126,0.5);
  transform: translateY(-4px) scale(1.02);
}

/* ===== Glass Card Effect for Service Cards ===== */
.service-card {
  background: rgba(26,26,26,0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover {
  background: rgba(30,30,30,0.8);
  border-color: rgba(200,169,126,0.15);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3), 0 0 30px rgba(200,169,126,0.05);
}

/* ===== About Image Reveal Animation ===== */
.about-image {
  position: relative;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  border-radius: var(--radius-lg);
  transform-origin: right;
  z-index: 2;
  transform: scaleX(0);
}
.about-image.active::after {
  animation: image-reveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
@keyframes image-reveal {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}

/* ===== Testimonial Card Glass ===== */
.testimonial-card {
  background: rgba(26,26,26,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.04);
}
.testimonial-card.active {
  border-color: rgba(200,169,126,0.1);
}

/* ===== Contact Form Glass Effect ===== */
.form-card {
  background: rgba(26,26,26,0.5) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.04) !important;
}

/* ===== Input Field Animated Underline ===== */
.form-group {
  position: relative;
}
.form-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: all 0.4s ease;
  transform: translateX(-50%);
}
.form-group:focus-within::after {
  width: 100%;
}

/* ===== Contact Info Card Glass ===== */
.contact-info-card {
  background: rgba(26,26,26,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,169,126,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* ===== Social Embed Card Glass ===== */
.social-embed-card {
  background: rgba(26,26,26,0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.04);
}

/* ===== Counter Section Glass Bar ===== */
.counter-section {
  position: relative;
}
.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(200,169,126,0.02);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.counter-item {
  position: relative;
  z-index: 1;
}

/* ===== Animated Section Borders ===== */
.section-header .gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  margin: 20px auto 0;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.section-header .gold-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.5);
  animation: gold-line-shine 2.5s ease-in-out infinite;
}
@keyframes gold-line-shine {
  0% { left: -50%; }
  100% { left: 150%; }
}

/* ===== Footer Glass Effect ===== */
footer {
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,126,0.2), transparent);
}

/* ===== Smooth Image Loading ===== */
img {
  transition: opacity 0.5s ease;
}
img[loading="lazy"] {
  opacity: 0;
}
img[loading="lazy"].loaded,
img.loaded {
  opacity: 1;
}

/* ===== Enhanced Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* ===== Stagger Children Enhanced ===== */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.15s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.25s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(7) { transition-delay: 0.35s; }
.stagger-children .reveal:nth-child(8) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(9) { transition-delay: 0.45s; }
.stagger-children .reveal:nth-child(10) { transition-delay: 0.5s; }
.stagger-children .reveal:nth-child(11) { transition-delay: 0.55s; }
.stagger-children .reveal:nth-child(12) { transition-delay: 0.6s; }
.stagger-children .reveal:nth-child(13) { transition-delay: 0.65s; }
.stagger-children .reveal:nth-child(14) { transition-delay: 0.7s; }
.stagger-children .reveal:nth-child(15) { transition-delay: 0.75s; }
.stagger-children .reveal:nth-child(16) { transition-delay: 0.8s; }

/* ===== WhatsApp Float Enhanced ===== */
.whatsapp-float {
  animation: whatsapp-bounce 3s ease-in-out infinite;
}
@keyframes whatsapp-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.whatsapp-float:hover {
  animation: none;
  transform: scale(1.1);
}

/* ===== Back to Top Enhanced ===== */
.back-to-top {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(200,169,126,0.3);
}

/* ===== Lightbox Glass Backdrop ===== */
.lightbox {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

/* ===== Portfolio Grid 4-column on large screens ===== */
@media (min-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== Hero Content Entrance ===== */
.hero-content {
  animation: hero-entrance 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}
@keyframes hero-entrance {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Hero Badge Glow ===== */
.hero-badge {
  background: rgba(200,169,126,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(200,169,126,0.2);
  animation: badge-glow 3s ease-in-out infinite alternate;
}
@keyframes badge-glow {
  0% { box-shadow: 0 0 10px rgba(200,169,126,0.1); }
  100% { box-shadow: 0 0 25px rgba(200,169,126,0.2); }
}

/* ===== Scroll Indicator Bounce ===== */
.scroll-indicator {
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

/* ===== Nav Links Hover Underline ===== */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ===== Diolichat Badge ===== */
.diolichat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(200,169,126,0.08);
  border: 1px solid rgba(200,169,126,0.15);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--gray-400);
  transition: var(--transition);
  text-decoration: none;
}
.diolichat-badge:hover {
  background: rgba(200,169,126,0.15);
  color: var(--primary);
  border-color: rgba(200,169,126,0.3);
}

/* ===== Print Styles ===== */
@media print {
  .navbar, .preloader, .whatsapp-float, .back-to-top, .scroll-progress { display: none !important; }
  body { background: white; color: black; }
  .section { padding: 20px 0; }
}
