/* 
  =========================================
  DESIGN SYSTEM & PREMIUM STYLESHEET
  Website: Elegant Female Anchor Portfolio
  =========================================
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* Variables */
:root {
  /* Colors */
  --bg-dark: #f8fafc;
  /* Soft Lilac-White Background */
  --bg-card: #ffffff;
  /* Translucent White Glass */
  --bg-card-hover: rgba(255, 255, 255, 0.95);

  --accent-purple: #1e3a8a;
  /* Premium Purple */
  --accent-blue: #0f172a;
  /* Saturated Light Blue for contrast */
  --accent-pink: #c5a880;
  /* Saturated Pink for contrast */

  --accent-gold: var(--accent-blue);
  --accent-rose: var(--accent-pink);
  --accent-berry: var(--accent-purple);

  --text-primary: #0f172a;
  /* Deep Dark Violet for legibility */
  --text-secondary: #475569;
  /* Muted Purple-Grey */
  --text-muted: #94a3b8;
  --border-color: rgba(30, 58, 138, 0.15);
  --border-glow: rgba(197, 168, 128, 0.4);

  /* Gradients */
  --gradient-gold-rose: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  --gradient-dark: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 242, 253, 0.7) 100%);

  /* Shadows */
  --shadow-color: rgba(15, 23, 42, 0.1);
  --shadow-color-hover: rgba(15, 23, 42, 0.2);
  --shadow-card-hover: rgba(30, 58, 138, 0.12);

  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background-color: var(--bg-dark);
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--gradient-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button,
input,
textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-rose);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gradient {
  background: var(--gradient-gold-rose);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-gold-rose);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--shadow-color);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow-color-hover);
}

.btn-secondary {
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(15, 23, 42, 0.02);
}

.btn-secondary:hover {
  background: var(--accent-gold);
  color: #07090e;
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.25);
}

/* Glassmorphism Panel */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: var(--border-glow);
  box-shadow: 0 10px 40px var(--shadow-card-hover);
}

/* Section Common Styling */
section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
  position: relative;
}

.section-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
  font-weight: 700;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 1.5rem auto 0;
  font-size: 1.05rem;
}

/* =========================================
   HEADER / NAVIGATION
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1.8rem 0;
}

.header .container {
  max-width: 1400px;
}

.header.scrolled {
  padding: 0.8rem 0;
  background: rgba(248, 247, 252, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 58, 138, 0.08);
}

.header.scrolled .nav-link {
  color: var(--text-secondary); 
}

.header.scrolled .nav-link:hover {
  color: var(--text-primary);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-primary);
  text-shadow: 0 1px 2px rgba(215, 211, 221, 0.763);
}

.logo span {
  color: var(--accent-purple); /* Vibrant light cyan-blue */
  font-weight: 400; /* Light/regular font weight */
}

.nav-menu {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold-rose);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  height: 100vh;
  min-height: 750px;
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Diagonal Background Glows */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-top: 4rem;
}

.hero-content {
  max-width: 680px;
}

.hero-tagline {
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.8rem;
}

.typewriter-container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  height: 40px;
}

.typewriter-text {
  color: var(--text-primary);
  border-right: 2px solid var(--accent-rose);
  padding-right: 4px;
  animation: cursor-blink 0.75s step-end infinite;
  white-space: nowrap;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 15px 50px rgba(15, 23, 42, 0.25);
  animation: morphing-blob 12s ease-in-out infinite alternate;
  aspect-ratio: 1 / 1.1;
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 5%;
  left: -10px;
  padding: 1.2rem 1.8rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: floating 4s ease-in-out infinite alternate;
}

.badge-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.badge-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-box {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.about-img-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent-rose);
  border-radius: 28px;
  margin: 15px;
  pointer-events: none;
  z-index: 2;
}

.about-stats {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 220px;
  padding: 2rem;
  z-index: 3;
}

.stat-item {
  margin-bottom: 1.2rem;
}

.stat-item:last-child {
  margin-bottom: 0;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1.1;
}

.stat-lbl {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.about-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.about-desc {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.feat-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feat-icon {
  width: 44px;
  height: 44px;
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-rose);
  flex-shrink: 0;
}

.feat-icon svg {
  width: 20px;
  height: 20px;
}

.feat-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.feat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-buttons {
  display: flex;
  gap: 1.5rem;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn:hover,
.tab-btn.active {
  color: var(--text-primary);
  border-color: var(--accent-rose);
  background: linear-gradient(135deg, rgba(197, 168, 128, 0.15) 0%, rgba(30, 58, 138, 0.15) 100%);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.service-card {
  padding: 3rem 2.2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

/* Card Glow Effect */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold-rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
}

.srv-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.08) 0%, rgba(197, 168, 128, 0.08) 100%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.service-card:hover .srv-icon {
  background: var(--gradient-gold-rose);
  color: #07090e;
  transform: rotateY(180deg);
}

.srv-icon svg {
  width: 28px;
  height: 28px;
}

.srv-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.srv-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.srv-list {
  list-style: none;
  margin-bottom: 2rem;
}

.srv-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.srv-list li svg {
  width: 14px;
  height: 14px;
  color: var(--accent-rose);
  flex-shrink: 0;
}

.srv-btn {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.srv-btn svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-fast);
}

.service-card:hover .srv-btn svg {
  transform: translateX(5px);
}

/* =========================================
   GALLERY & SHOWCASE SECTION
   ========================================= */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.gallery-grid { display: block; column-count: 3; column-gap: 1.8rem; }

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  break-inside: avoid; margin-bottom: 1.8rem; display: inline-block; width: 100%;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
  width: 100%;
  height: auto; display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 9, 14, 0.95) 0%, rgba(7, 9, 14, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 2;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
}

/* Video Play Badge overlay */
.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 60px;
  height: 60px;
  background: var(--gradient-gold-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07090e;
  box-shadow: 0 4px 20px var(--shadow-color);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 3;
  pointer-events: none;
}

.gallery-item:hover .play-badge {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.play-badge svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
  /* Center adjustment */
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials {
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
}

.slider-outer {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 0 3.5rem;
}

.slider-container {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.slide {
  flex-shrink: 0;
  width: 100%;
  padding: 1rem;
}

.testimonial-card {
  padding: 3.5rem;
  text-align: center;
  position: relative;
}

.quote-icon {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: rgba(226, 192, 141, 0.15);
  position: absolute;
  top: 1.5rem;
  left: 3rem;
}

.client-feedback {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 2.2rem;
  position: relative;
  z-index: 2;
  font-weight: 400;
}

.client-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.client-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.client-role {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* Slider Controls */
.slider-arrow {
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition-smooth);
  z-index: 10;
}

.slider-arrow:hover {
  color: #07090e;
  background: var(--gradient-gold-rose);
  border-color: transparent;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.arrow-prev {
  left: 0;
}

.arrow-next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(28, 11, 54, 0.15);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  width: 24px;
  background: var(--accent-rose);
  border-radius: 4px;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  padding: 2.2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.08) 0%, rgba(197, 168, 128, 0.08) 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.contact-details p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.contact-details a {
  color: var(--accent-rose);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Form Styling */
.contact-form {
  padding: 3.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-input {
  width: 100%;
  padding: 1rem 0;
  font-size: 0.95rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  background: transparent;
  transition: var(--transition-smooth);
}

select.form-input {
  border: none;
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
  outline: none;
  color: var(--text-secondary);
}

.form-label {
  position: absolute;
  top: 1rem;
  left: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  pointer-events: none;
  transition: var(--transition-smooth);
}

/* Floating label effect */
.form-input:focus~.form-label,
.form-input:not(:placeholder-shown)~.form-label,
select.form-input ~ .form-label {
  top: -12px;
  font-size: 0.75rem;
  color: var(--accent-rose);
}

.form-input:focus {
  border-bottom-color: var(--accent-rose);
}

textarea.form-input {
  min-height: 100px;
  resize: vertical;
}

.form-status {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

/* =========================================
   FOOTER SECTION
   ========================================= */
.footer {
  background: #0d061c;
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(30, 58, 138, 0.05);
  color: #ffffff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1.2rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.social-btn:hover {
  color: #07090e;
  background: var(--gradient-gold-rose);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.footer-links h4,
.footer-newsletter h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover {
  color: var(--accent-rose);
  padding-left: 5px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.newsletter-form {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.newsletter-form input {
  flex-grow: 1;
  color: var(--text-primary);
  font-size: 0.9rem;
  padding: 0.5rem 0;
}

.newsletter-form button {
  color: var(--accent-gold);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0 0.8rem;
}

.newsletter-form button:hover {
  color: var(--accent-rose);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   LIGHTBOX / MODAL OVERLAY
   ========================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 9, 14, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-color);
}

.lightbox-content img {
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-content iframe {
  width: 80vw;
  height: 45vw;
  max-width: 960px;
  max-height: 540px;
  border: none;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  color: #ffffff;
  font-size: 3rem;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 2100;
}

.lightbox-close:hover {
  color: var(--accent-rose);
}

/* =========================================
   SCROLL REVEAL / ANIMATION SYSTEM
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-left {
  transform: translateX(-40px);
}

.reveal.reveal-right {
  transform: translateX(40px);
}

.reveal.reveal-scale {
  transform: scale(0.9);
}

.reveal.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Delay modifiers */
.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

/* Custom Keyframes */
@keyframes cursor-blink {

  from,
  to {
    border-color: transparent
  }

  50% {
    border-color: var(--accent-rose)
  }
}

@keyframes morphing-blob {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  50% {
    border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
  }

  100% {
    border-radius: 60% 40% 60% 40% / 40% 50% 50% 60%;
  }
}

@keyframes floating {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-15px) rotate(1deg);
  }
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (min-width: 768px) and (max-width: 1250px) {
  .logo {
    font-size: 1.5rem;
  }
  .nav-menu {
    gap: 1.2rem;
  }
  .nav-link {
    font-size: 0.88rem;
  }
  .nav-cta {
    margin-left: 0.5rem;
  }
  .nav-cta .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.8rem;
  }

  .about-grid,
  .contact-grid {
    gap: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  /* Mobile menu toggle */
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #f8f7fc;
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    gap: 2.5rem;
    transition: var(--transition-smooth);
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-cta {
    margin-left: 0;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Hero section adjustments */
  .hero {
    height: auto;
    padding: 8rem 0 5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .typewriter-container {
    justify-content: center;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  /* About layout */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-stats {
    position: static;
    transform: none;
    width: 100%;
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 1.5rem;
    gap: 1rem;
    text-align: center;
  }

  .stat-item {
    margin-bottom: 0;
    flex: 1;
  }

  /* Contact Layout */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .contact-form {
    padding: 2.2rem;
  }

  /* Footer layout */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 580px) {
  .container {
    padding: 0 1.25rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    column-count: 2;
    column-gap: 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .typewriter-container {
    font-size: 1.4rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem 1rem;
  }

  .quote-icon {
    font-size: 3rem;
    top: 0.5rem;
    left: 1rem;
  }

  .slider-outer {
    padding: 0 1.5rem;
  }

  .slider-arrow {
    display: none;
  }
}

/* --- ADDED GRID ENTRANCE ANIMATION --- */
@keyframes cardEntrance {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.gallery-grid .gallery-item {
  animation: cardEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Stagger animation delays for cards when they appear */
.gallery-grid .gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-grid .gallery-item:nth-child(2) { animation-delay: 0.10s; }
.gallery-grid .gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-grid .gallery-item:nth-child(4) { animation-delay: 0.20s; }
.gallery-grid .gallery-item:nth-child(5) { animation-delay: 0.25s; }
.gallery-grid .gallery-item:nth-child(6) { animation-delay: 0.30s; }
.gallery-grid .gallery-item:nth-child(7) { animation-delay: 0.35s; }
.gallery-grid .gallery-item:nth-child(8) { animation-delay: 0.40s; }
.gallery-grid .gallery-item:nth-child(9) { animation-delay: 0.45s; }
.gallery-grid .gallery-item:nth-child(10) { animation-delay: 0.50s; }
.gallery-grid .gallery-item:nth-child(11) { animation-delay: 0.55s; }
.gallery-grid .gallery-item:nth-child(12) { animation-delay: 0.60s; }
.gallery-grid .gallery-item:nth-child(13) { animation-delay: 0.65s; }
.gallery-grid .gallery-item:nth-child(14) { animation-delay: 0.70s; }
.gallery-grid .gallery-item:nth-child(15) { animation-delay: 0.75s; }
.gallery-grid .gallery-item:nth-child(16) { animation-delay: 0.80s; }
.gallery-grid .gallery-item:nth-child(n+17) { animation-delay: 0.85s; }


/* --- ADVANCED PREMIUM ANIMATIONS --- */

/* 1. Advanced Scroll Reveals */
.reveal-blur {
  filter: blur(10px);
}
.reveal.active.reveal-blur {
  filter: blur(0);
}

.reveal-rotate {
  transform: translateY(40px) rotateX(15deg) scale(0.95);
  transform-origin: bottom center;
}
.reveal.active.reveal-rotate {
  transform: translateY(0) rotateX(0) scale(1);
}

.reveal-zoom {
  transform: scale(0.85);
}
.reveal.active.reveal-zoom {
  transform: scale(1);
}

/* 2. Premium Button Interactions */
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg) translateX(-150%);
  transition: all 0.5s ease;
  animation: shimmer 3s infinite linear;
}

.btn-primary:hover {
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.4), 0 0 15px rgba(15, 23, 42, 0.4);
}

/* 3. Dynamic Hero Enhancements */
.hero-img-wrapper::after {
  content: '';
  position: absolute;
  inset: -5px;
  background: var(--gradient-gold-rose);
  border-radius: inherit;
  z-index: -1;
  filter: blur(5px);
  opacity: 0.7;
  
}

@keyframes pulse-glow {
  0% { opacity: 0.5; filter: blur(10px); }
  100% { opacity: 0.9; filter: blur(20px); }
}

.experience-badge {
  animation: anti-gravity 6s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes anti-gravity {
  0% { transform: translateY(0) rotate(-2deg); }
  100% { transform: translateY(-20px) rotate(2deg); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
}

/* 4. Interactive Card Hovers */
.service-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 2px transparent;
  transition: all 0.4s ease;
  pointer-events: none;
}

.service-card:hover::after {
  box-shadow: inset 0 0 0 2px rgba(30, 58, 138, 0.5);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(30, 58, 138, 0.15);
}

.about-img-box {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-box:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) scale(1.02);
}

/* Footer Logo Override for dark background */
.footer .logo, .footer .logo span {
  color: #ffffff !important;
}

/* Video thumbnails in gallery grid */
.gallery-item video {
  width: 100%;
  height: auto; display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none; /* Let the container handle clicks */
}
.gallery-item:hover video {
  transform: scale(1.05);
}

/* Prevent face cropping in gallery items */
.gallery-item img {
  object-position: top center; /* Prioritizes the top of the image where faces usually are */
}
