/* KENZO PRODUCTION - PREMIUM CINEMATIC PORTFOLIO STYLING */

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,300;0,400;0,500;0,600;1,400&family=JetBrains+Mono:wght@400;500;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

/* Luxury CSS Custom Properties */
:root {
  --background: #131313;
  --surface: #131313;
  --surface-dim: #131313;
  --surface-bright: #3a3939;
  --surface-container-lowest: #0e0e0e;
  --surface-container-low: #1c1b1b;
  --surface-container: #201f1f;
  --surface-container-high: #2a2a2a;
  --surface-container-highest: #353534;
  
  --on-surface: #e5e2e1;
  --on-surface-variant: #d0c5af;
  --inverse-surface: #e5e2e1;
  --inverse-on-surface: #313030;
  
  --outline: #99907c;
  --outline-variant: #4d4635;
  
  --primary: #f2ca50; /* Gold */
  --on-primary: #3c2f00;
  --primary-container: #d4af37;
  --on-primary-container: #554300;
  --inverse-primary: #735c00;
  
  --secondary: #c7c6c4; /* Platinum/Silver */
  --on-secondary: #303130;
  --secondary-container: #464746;
  --on-secondary-container: #b5b5b3;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --unit: 8px;
  --container-max: 1440px;
  --gutter: 32px;
  --margin-desktop: 64px;
  --margin-mobile: 24px;
  --section-gap: 160px;
  
  /* Easings */
  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and Base Rules */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html, body {
  background-color: var(--background);
  color: var(--on-surface);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--surface-container-lowest);
}
::-webkit-scrollbar-thumb {
  background: var(--surface-container-highest);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Selection */
::selection {
  background-color: var(--primary);
  color: var(--on-primary);
}

/* Typography Setup */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--on-surface);
  letter-spacing: -0.01em;
}

.text-gold {
  color: var(--primary);
}

.font-italic {
  font-style: italic;
}

.label-caps {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.body-lg {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--secondary);
}

.body-md {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--secondary);
}

.headline-lg {
  font-size: 48px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .headline-lg {
    font-size: 32px;
  }
}

/* Layout Core */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--margin-desktop);
  padding-right: var(--margin-desktop);
}

@media (max-width: 768px) {
  .container {
    padding-left: var(--margin-mobile);
    padding-right: var(--margin-mobile);
  }
}

/* Glass panel */
.glass-panel {
  background: rgba(28, 27, 27, 0.45);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(229, 228, 226, 0.08);
  border-radius: 0px; /* Sharp corners per style guide */
}

/* Navigation bar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  transition: background-color 0.6s var(--ease-cinematic), border-color 0.6s var(--ease-cinematic), backdrop-filter 0.6s var(--ease-cinematic);
}

nav.scrolled {
  background-color: rgba(19, 19, 19, 0.85);
  backdrop-filter: blur(40px);
  border-bottom: 1px solid rgba(229, 228, 226, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
}

.logo-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--primary);
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--on-surface);
}

.logo-text span {
  color: var(--primary);
  font-style: italic;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--secondary);
  transition: color 0.3s ease;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: width 0.4s var(--ease-cinematic), transform 0.4s var(--ease-cinematic);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--on-surface);
}

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

.nav-link.active {
  color: var(--primary);
}

@media (max-width: 820px) {
  .nav-links {
    display: none; /* Hide menu links on small viewports */
  }
}

/* Luxury Buttons */
.btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--outline);
  background: transparent;
  color: var(--on-surface);
  cursor: pointer;
  transition: all 0.5s var(--ease-cinematic);
  position: relative;
  overflow: hidden;
  border-radius: 0px; /* Force sharp corner */
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 0 15px rgba(242, 202, 80, 0.35);
}

.btn-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(45deg);
  transition: transform 0.8s ease;
}

.btn-shimmer:hover::after {
  transform: translate(50%, 50%) rotate(45deg);
}

/* Sections Base */
.section {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
  position: relative;
}

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

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transform: scale(1.05);
}

.hero-video-bg video,
.hero-video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(19, 19, 19, 0.2) 0%, rgba(19, 19, 19, 0.95) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--margin-mobile);
}

/* Animated Logo Reveal in Hero */
.hero-logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-logo-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
  background: rgba(19, 19, 19, 0.5);
}

.hero-logo-text {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero-logo-text span {
  color: var(--primary);
  font-style: italic;
  font-weight: 400;
}

.hero-title-container {
  overflow: hidden;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 84px;
  line-height: 1.1;
  font-weight: 700;
}

.hero-title span.title-line {
  display: block;
  overflow: hidden;
}

.hero-title span.title-reveal {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}

@media (max-width: 992px) {
  .hero-title { font-size: 60px; }
  .hero-logo-text { font-size: 26px; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 40px; }
  .hero-logo-text { font-size: 20px; }
}

.hero-subtitle {
  margin-bottom: 40px;
  color: var(--secondary);
  opacity: 0;
  transform: translateY(20px);
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
}

.hero-scroll-prompt {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--primary) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: var(--on-surface);
  animation: scroll-indicator 2.2s infinite ease-in-out;
}

/* Featured Video Showcase (Scale Up) */
.featured-showcase {
  height: 150vh; /* scroll volume for pin scrubbing */
  position: relative;
  background-color: var(--background);
}

.showcase-container {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.showcase-video-wrapper {
  position: relative;
  width: 80%; /* starts boxed */
  height: 70%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  will-change: width, height, transform;
}

.showcase-video-wrapper video,
.showcase-video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  will-change: transform;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 35%, rgba(19, 19, 19, 0.85) 100%);
  z-index: 1;
}

.showcase-content {
  position: absolute;
  bottom: 80px;
  left: 10%;
  z-index: 2;
  max-width: 600px;
  pointer-events: none;
}

.showcase-content h3 {
  font-size: 36px;
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .showcase-video-wrapper {
    width: 90%;
    height: 50%;
  }
  .showcase-content {
    left: 5%;
    bottom: 40px;
  }
  .showcase-content h3 {
    font-size: 24px;
  }
}

/* Horizontal Scroll Portfolio */
.portfolio-horizontal-section {
  background-color: var(--surface-container-lowest);
  position: relative;
  overflow: hidden;
}

.portfolio-container {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  padding: 0 var(--margin-desktop);
  height: 100vh;
  align-items: center;
}

.portfolio-intro-slide {
  flex: 0 0 500px;
  padding-right: 80px;
}

.portfolio-intro-slide h2 {
  font-size: 56px;
  margin-top: 20px;
  margin-bottom: 30px;
  line-height: 1.1;
}

.portfolio-intro-slide p {
  color: var(--secondary);
  font-size: 16px;
  line-height: 1.6;
}

.portfolio-slide {
  flex: 0 0 750px;
  height: 60vh;
  margin-right: 60px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(229, 228, 226, 0.05);
}

@media (max-width: 992px) {
  .portfolio-slide {
    flex: 0 0 550px;
    height: 50vh;
  }
}

@media (max-width: 576px) {
  .portfolio-slide {
    flex: 0 0 320px;
    height: 45vh;
    margin-right: 30px;
  }
  .portfolio-intro-slide {
    flex: 0 0 280px;
    padding-right: 30px;
  }
  .portfolio-intro-slide h2 {
    font-size: 32px;
  }
}

.portfolio-media {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.portfolio-media img,
.portfolio-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-cinematic);
}

.portfolio-slide:hover .portfolio-media img,
.portfolio-slide:hover .portfolio-media video {
  transform: scale(1.08);
}

.portfolio-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 19, 19, 0.9) 0%, rgba(19, 19, 19, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  z-index: 2;
  transition: background 0.5s ease;
}

@media (max-width: 576px) {
  .portfolio-hover-overlay {
    padding: 20px;
  }
}

.portfolio-slate-data {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--outline);
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.portfolio-title-group h3 {
  font-size: 32px;
  margin-top: 5px;
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  .portfolio-title-group h3 {
    font-size: 20px;
  }
}

.portfolio-link {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary);
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease-cinematic), transform 0.5s var(--ease-cinematic);
}

.portfolio-slide:hover .portfolio-link {
  opacity: 1;
  transform: translateY(0);
}

/* About Studio */
.about {
  background-color: var(--background);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid rgba(229, 228, 226, 0.05);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.2s var(--ease-cinematic);
}

.about-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  padding: 40px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

@media (max-width: 576px) {
  .about-badge {
    padding: 20px;
    bottom: -10px;
    right: -10px;
  }
}

.badge-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-quote {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--on-surface-variant);
  border-left: 2px solid var(--primary);
  padding-left: 20px;
  margin: 15px 0;
}

.about-discover {
  align-self: flex-start;
  color: var(--primary);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.about-discover:hover {
  border-color: var(--primary);
}

/* Services section (Dynamic Cards Grid) */
.services {
  background-color: var(--surface-container-lowest);
}

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

.section-header h2 {
  font-size: 48px;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 32px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.service-card {
  padding: 50px 35px;
  transition: transform 0.5s var(--ease-cinematic), background-color 0.5s var(--ease-cinematic), border-color 0.5s var(--ease-cinematic);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  background-color: var(--surface-container-high);
  border-color: rgba(242, 202, 80, 0.25);
  transform: translateY(-8px);
}

.service-icon {
  margin-bottom: 30px;
  display: inline-flex;
}

.service-icon span {
  font-size: 44px;
  color: var(--primary);
  transition: transform 0.6s var(--ease-cinematic);
}

.service-card:hover .service-icon span {
  transform: scale(1.1) rotate(6deg);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--on-surface-variant);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: var(--primary);
  display: inline-block;
}

/* Testimonials section */
.testimonials {
  background-color: var(--background);
  overflow: hidden;
}

.testimonials-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .testimonials-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.testimonials-info h2 {
  font-size: 48px;
  margin-top: 15px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .testimonials-info h2 {
    font-size: 32px;
  }
}

.carousel-nav {
  display: flex;
  gap: 16px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--outline);
  background: transparent;
  color: var(--on-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s var(--ease-cinematic);
}

.carousel-btn:hover {
  background-color: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
}

.carousel-container {
  position: relative;
  width: 100%;
  min-height: 380px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 60px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px) scale(0.95);
  transition: opacity 0.8s var(--ease-cinematic), transform 0.8s var(--ease-cinematic), visibility 0.8s;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  position: relative;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px;
  }
}

.quote-icon {
  font-size: 64px;
  color: rgba(242, 202, 80, 0.2);
  margin-bottom: 20px;
  display: block;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .testimonial-text {
    font-size: 18px;
    margin-bottom: 25px;
  }
}

.author-name {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.author-role {
  font-size: 14px;
  color: var(--secondary);
}

/* Instagram / Social Gallery */
.social-gallery {
  background-color: var(--surface-container-lowest);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid rgba(229, 228, 226, 0.05);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-cinematic);
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background-color: rgba(19, 19, 19, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s var(--ease-cinematic);
  z-index: 2;
}

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

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

.gallery-icon {
  color: var(--primary);
  font-size: 32px;
}

/* Contact CTA Section */
.contact-section {
  background-color: var(--background);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 992px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
}

.contact-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
  border-right: 1px solid rgba(229, 228, 226, 0.08);
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) grayscale(1);
}

.contact-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, var(--background));
  z-index: 1;
}

@media (max-width: 992px) {
  .contact-media-overlay {
    background: linear-gradient(to bottom, transparent, var(--background));
  }
}

.contact-form-container {
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 80px var(--margin-mobile);
  }
}

.contact-form-container h2 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .contact-form-container h2 {
    font-size: 36px;
  }
}

.contact-subtitle {
  color: var(--secondary);
  margin-bottom: 50px;
  font-size: 15px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--outline-variant);
  color: var(--on-surface);
  font-size: 16px;
  padding: 12px 0;
  font-family: var(--font-body);
  transition: border-color 0.4s var(--ease-cinematic);
}

.form-input:focus {
  border-color: var(--primary);
}

.form-label {
  position: absolute;
  top: 12px;
  left: 0;
  color: var(--secondary);
  font-size: 15px;
  pointer-events: none;
  transition: transform 0.4s var(--ease-cinematic), color 0.4s var(--ease-cinematic), font-size 0.4s var(--ease-cinematic);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  transform: translateY(-26px);
  color: var(--primary);
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.form-actions {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  align-items: center;
}

@media (max-width: 576px) {
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25D366; /* WhatsApp Green */
  color: white;
  border: none;
  padding: 14px 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--ease-cinematic);
  text-decoration: none;
}

.whatsapp-cta:hover {
  background-color: #128C7E;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

/* Floating WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--on-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 99;
  transition: transform 0.3s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
}

.pulse-ring {
  position: absolute;
  inset: -8px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: fab-pulse 2s infinite ease-out;
  pointer-events: none;
}

@keyframes fab-pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: 80px;
  background-color: var(--surface-container-high);
  color: var(--on-surface);
  border: 1px solid rgba(229, 228, 226, 0.08);
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.4s var(--ease-cinematic), transform 0.4s var(--ease-cinematic);
  pointer-events: none;
}

.whatsapp-fab:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Footer Section */
footer {
  background-color: var(--surface-container-lowest);
  border-top: 1px solid rgba(229, 228, 226, 0.05);
  padding: 80px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-brand p {
  color: var(--secondary);
  font-size: 14px;
  margin-top: 15px;
  max-width: 300px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: var(--secondary);
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: var(--secondary);
  font-size: 15px;
}

.footer-contact-details span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-details .material-symbols-outlined {
  color: var(--primary);
  font-size: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(229, 228, 226, 0.05);
  padding-top: 40px;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--outline);
  letter-spacing: 0.05em;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  color: var(--secondary);
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  color: var(--primary);
}

/* General Animations Trigger hooks */
.reveal-el {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}

/* Toast Alerts */
.toast-container {
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 1000;
}

.toast {
  background: var(--surface-container);
  border: 1px solid var(--primary);
  padding: 16px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-cinematic);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}
