/* ============================================
   VILOSTUDIOS - PREMIUM ANIMATION STUDIO
   Standalone Version - All CSS Bundled
   ============================================ */

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

:root {
  --orange: #FF6B35;
  --orange-light: #FF8C42;
  --black: #000000;
  --black-soft: #0a0a0a;
  --gray-dark: #1a1a1a;
  --gray: #2a2a2a;
  --white: #ffffff;
  --text: #e0e0e0;
  --text-muted: #888888;
  --surface-strong: rgba(12, 14, 20, 0.82);
  --surface-mid: rgba(16, 19, 27, 0.7);
  --surface-soft: rgba(18, 22, 32, 0.5);
  --surface-stroke: rgba(255, 255, 255, 0.14);
  --orange-glow: rgba(255, 107, 53, 0.22);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html::-webkit-scrollbar {
  width: 0px;
  display: none;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  width: 0px;
  display: none;
}

body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Custom scrollbar for select dropdowns - Dark glassmorphism theme */
select::-webkit-scrollbar {
  width: 6px;
}

select::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  margin: 2px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

select::-webkit-scrollbar-thumb {
  background: rgba(255, 107, 53, 0.3);
  border-radius: 3px;
  border: 1px solid rgba(255, 107, 53, 0.15);
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

select::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 107, 53, 0.5);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.2);
}

select::-webkit-scrollbar-thumb:active {
  background: rgba(255, 107, 53, 0.7);
  border-color: rgba(255, 107, 53, 0.5);
}

select::-webkit-scrollbar-corner {
  background: rgba(0, 0, 0, 0.4);
}

/* Firefox scrollbar for selects */
select {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 107, 53, 0.3) rgba(0, 0, 0, 0.4);
}

/* Additional scrollbar styling for any scrollable containers */
.time-slots-grid::-webkit-scrollbar,
.scheduler-container::-webkit-scrollbar {
  width: 6px;
}

.time-slots-grid::-webkit-scrollbar-track,
.scheduler-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.time-slots-grid::-webkit-scrollbar-thumb,
.scheduler-container::-webkit-scrollbar-thumb {
  background: rgba(255, 107, 53, 0.3);
  border-radius: 3px;
  border: 1px solid rgba(255, 107, 53, 0.15);
}

.time-slots-grid::-webkit-scrollbar-thumb:hover,
.scheduler-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 107, 53, 0.5);
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

.app {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.main-content {
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 10;
  padding-left: 0;
  padding-top: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.main-content::after {
  content: '';
  position: fixed;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 150px;
  pointer-events: none;
  z-index: 10001;
}

/* Background Video */
.background-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  background: #000;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  opacity: 1;
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
  background: #000;
  z-index: 0;
  display: block;
  backface-visibility: hidden;
}

.background-video-secondary {
  opacity: 0;
  z-index: 1;
}

.video-shader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

.video-shader-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 3;
}

.video-ornament-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

.ornament-svg {
  width: 100%;
  height: 100%;
}

.video-footer {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  pointer-events: auto !important;
}

.video-social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.video-social-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: auto !important;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 10001;
}

.video-social-links a:hover {
  color: var(--orange);
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.video-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 500;
  letter-spacing: 0.1em;
  pointer-events: none;
}

/* Navigation */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(to bottom, rgba(6, 8, 12, 0.84), rgba(6, 8, 12, 0.58));
  backdrop-filter: blur(14px) saturate(115%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  transition: all 0.3s ease;
}

.navigation.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.15rem 0.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav-logo:hover {
  transform: none;
}

.logo-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.nav-logo:hover .logo-img {
  transform: none;
}

.logo-text {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.nav-logo:hover .logo-text {
  color: var(--white);
}

.nav-menu {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  width: auto;
  min-width: 0;
  height: auto;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  background: transparent;
  backdrop-filter: none;
  border: 1px solid transparent;
  box-shadow: none;
}

.nav-link:not(.active) {
  background: transparent;
}

.nav-link::before {
  display: none;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  transform: none;
  box-shadow: none;
}

.nav-link.active {
  color: var(--white);
  background: rgba(255, 107, 53, 0.12);
  border-color: rgba(255, 107, 53, 0.28);
  transform: translateY(0) scale(1);
  box-shadow: none;
}

.nav-link.active::before {
  display: none;
}

.nav-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  filter: none;
}

.nav-link.active svg {
  stroke-width: 2.3;
  filter: none;
}

.nav-footer {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}

.nav-login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
  width: 40px;
  height: 40px;
  box-shadow: none;
  aspect-ratio: 1;
  position: relative;
  overflow: visible;
}

.nav-login-button:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: none;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.2);
}

.nav-login-button:active {
  transform: translateY(0) scale(1);
}

.nav-login-button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  filter: none;
  position: relative;
  z-index: 1;
}

.nav-login-button:hover svg {
  transform: none;
}

/* User Profile Navigation */
.user-profile-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-user-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0.7rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
}

.nav-user-button:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  transform: none;
  box-shadow: none;
}

.nav-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  box-shadow: none;
  flex-shrink: 0;
}

.nav-user-name {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 0.25rem;
  background: transparent;
  backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.2rem;
  box-shadow: none;
}

.lang-button {
  padding: 0.45rem 0.65rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
}

.lang-button:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transform: none;
}

.lang-button.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  position: relative;
  z-index: 1;
}

/* Animated Title */
.animated-title-container {
  position: fixed;
  bottom: 1rem;
  left: 2rem;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
  animation: idleFloat 5s ease-in-out infinite;
}

.animated-title {
  margin: 0;
  animation: idleBlur 8s ease-in-out infinite, idleScale 4s ease-in-out infinite;
}

@keyframes idleFloat {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  33% { transform: translateY(-6px) translateX(2px); }
  66% { transform: translateY(-4px) translateX(-2px); }
}

@keyframes idleBlur {
  0%, 100% { filter: blur(0px); opacity: 0.85; }
  20% { filter: blur(1px); opacity: 0.75; }
  40% { filter: blur(0.5px); opacity: 0.8; }
  60% { filter: blur(1.5px); opacity: 0.7; }
  80% { filter: blur(0.3px); opacity: 0.82; }
}

@keyframes idleScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.ae-text-container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 4rem;
  perspective: 1000px;
  overflow: visible;
}

.ae-text-word {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
  transform-style: preserve-3d;
  opacity: 0.7;
}

.ae-text-letter {
  display: inline-block;
  transform-origin: center center;
  /* Avoid large layer allocation across many letters. */
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  animation: letterPulse 3s ease-in-out infinite;
  animation-delay: calc(var(--index, 0) * 0.15s);
}

@keyframes letterPulse {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.9; transform: translateY(-2px); }
}

/* Sections */
.section {
  min-height: 100vh;
  padding: 8rem 6rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.section-header {
  margin-bottom: 5rem;
}

.section-number {
  font-size: 0.75rem;
  color: var(--orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 700;
  opacity: 0.8;
  font-family: 'Inter', sans-serif;
}

.section-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-family: 'Inter', sans-serif;
}

.section-subtitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-muted);
  margin-top: 1rem;
  font-weight: 400;
}

.portfolio-section,
.why-section,
.contact-section {
  isolation: isolate;
}

.portfolio-section::before,
.why-section::before,
.contact-section::before {
  content: '';
  position: absolute;
  inset: 2.5rem 2rem;
  border-radius: 28px;
  border: 1px solid var(--surface-stroke);
  background:
    radial-gradient(120% 90% at 15% 10%, rgba(255, 107, 53, 0.12), transparent 55%),
    radial-gradient(100% 80% at 90% 100%, rgba(120, 165, 255, 0.09), transparent 58%),
    linear-gradient(155deg, var(--surface-strong) 0%, var(--surface-soft) 100%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(130%);
  pointer-events: none;
  z-index: -1;
}

/* Hero */
.hero-section {
  min-height: 100vh;
  position: relative;
  z-index: 10;
}

/* About */
.about-section {
  position: relative;
  z-index: 10;
}

.about-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text {
  max-width: 800px;
}

.about-subtitle {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;
}

.about-description {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 600px;
}

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

.stat-number {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 0.75rem;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.about-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-short {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 520px;
  line-height: 1.6;
}

/* Portfolio */
.portfolio-section {
  position: relative;
  z-index: 10;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio-content {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfolio-intro {
  display: none;
}

.portfolio-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
}

.portfolio-item-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.portfolio-item-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
  cursor: pointer;
  gap: 2rem;
}

.portfolio-cover-wrapper {
  position: relative;
  width: 600px;
  height: 800px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item-simple:hover .portfolio-cover-wrapper {
  transform: scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

.portfolio-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.portfolio-details {
  padding: 1.4rem 1.7rem 1.5rem;
  text-align: center;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(140deg, rgba(13, 15, 22, 0.85), rgba(13, 15, 22, 0.58)),
    radial-gradient(70% 90% at 20% 0%, rgba(255, 107, 53, 0.16), transparent 70%);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(14px) saturate(120%);
}

.portfolio-category {
  font-size: 0.75rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.portfolio-item-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

.portfolio-item-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

.portfolio-client-row {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.portfolio-client-label {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.portfolio-client-name {
  color: var(--orange);
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  display: inline-block;
}

/* Why Section */
.why-section {
  position: relative;
  z-index: 5;
}

.why-section .section-header {
  max-width: 760px;
  margin-bottom: 2.5rem;
  padding: 2rem 2.25rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(140deg, rgba(10, 12, 18, 0.84), rgba(13, 16, 24, 0.62)),
    radial-gradient(85% 80% at 0% 0%, rgba(255, 107, 53, 0.2), transparent 72%);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px) saturate(120%);
}

.why-intro-card {
  background:
    linear-gradient(160deg, rgba(7, 9, 14, 0.9), rgba(12, 15, 22, 0.74)),
    radial-gradient(90% 130% at 100% 0%, rgba(255, 107, 53, 0.16), transparent 68%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  max-width: 700px;
  margin: 1rem auto 0;
  text-align: center;
  backdrop-filter: blur(14px) saturate(118%);
}

.why-description {
  font-size: 1.2rem;
  line-height: 1.85;
  color: rgba(245, 247, 252, 0.96);
}

/* Contact */
.contact-section {
  position: relative;
  z-index: 10;
}

.contact-section .section-header {
  max-width: 720px;
  margin-bottom: 2.75rem;
  padding: 2rem 2.25rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(10, 12, 18, 0.86), rgba(15, 18, 26, 0.66)),
    radial-gradient(90% 80% at 100% 0%, rgba(255, 107, 53, 0.17), transparent 72%);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(16px) saturate(125%);
}

.contact-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info {
  padding: 2rem 2.1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(150deg, rgba(8, 10, 15, 0.88), rgba(11, 14, 22, 0.68)),
    radial-gradient(100% 120% at 0% 0%, rgba(255, 107, 53, 0.12), transparent 72%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px) saturate(120%);
}

.contact-subtitle {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
}

.contact-description {
  font-size: 1.15rem;
  color: rgba(242, 245, 252, 0.95);
  line-height: 1.85;
  margin-bottom: 2.2rem;
  font-family: 'Inter', sans-serif;
}

.contact-guidelines {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(4, 6, 11, 0.58);
  backdrop-filter: blur(12px) saturate(110%);
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-guidelines-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.contact-guidelines-email {
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.contact-guidelines-email a {
  font-size: 1.1rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.contact-guidelines-email a:hover {
  color: var(--orange);
}

.contact-guidelines-warning {
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--white);
}

.contact-guidelines ul {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--text);
  font-size: 0.95rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item {
  padding: 1rem 1.1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(6, 8, 12, 0.4);
}

.contact-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.contact-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.contact-value {
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
  display: inline-block;
  font-family: 'Inter', sans-serif;
}

.contact-value:hover {
  color: var(--orange);
  transform: translateX(5px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  background: linear-gradient(155deg, rgba(18, 21, 30, 0.86), rgba(16, 20, 28, 0.66));
  backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 66, 0.05) 100%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

.form-group {
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: all 0.2s ease;
  outline: none;
  backdrop-filter: blur(10px);
  box-sizing: border-box;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Ensure select maintains dark theme */
.form-group select {
  background-color: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

.form-group select::-webkit-select-value {
  color: rgba(255, 255, 255, 0.9);
}

.form-group select::-moz-select-value {
  color: rgba(255, 255, 255, 0.9);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 1.25rem;
  position: relative;
  background-image: none;
  transition: all 0.2s ease;
}

.form-group select::-ms-expand {
  display: none;
}

/* Custom dropdown arrow - positioned relative to select input */
.form-group:has(select) {
  position: relative;
}

/* Remove arrows from all dropdowns */
.form-group:has(select)::after {
  display: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(255, 107, 53, 0.4);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1), inset 0 1px 2px rgba(0, 0, 0, 0.3);
  transform: none;
}


.form-group select:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.35);
}

.form-group select:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Smooth transition for select value changes */
.form-group select {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              border-color 0.2s ease,
              background-color 0.2s ease,
              box-shadow 0.2s ease;
}

/* Style select options - Dark theme matching glassmorphism */
.form-group select option {
  background: rgba(10, 10, 15, 1) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.875rem 1rem !important;
  border: none !important;
  font-size: 0.9rem !important;
  font-family: var(--font) !important;
  font-weight: 500 !important;
}

.form-group select option:hover,
.form-group select option:focus {
  background: rgba(255, 107, 53, 0.15) !important;
  color: rgba(255, 255, 255, 1) !important;
}

.form-group select option:checked,
.form-group select option[selected] {
  background: rgba(10, 10, 15, 1) !important;
  color: rgba(255, 107, 53, 1) !important;
  font-weight: 600 !important;
}

.form-group select option:disabled {
  color: rgba(255, 255, 255, 0.3) !important;
  background: rgba(10, 10, 15, 0.6) !important;
  cursor: not-allowed !important;
}

/* Style the select element to ensure dark background */
.form-group select {
  background-color: rgba(0, 0, 0, 0.3) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.form-group select:focus {
  background-color: rgba(0, 0, 0, 0.4) !important;
  color: rgba(255, 255, 255, 1) !important;
}

/* Improve select dropdown appearance */
.form-group select {
  cursor: pointer;
}

.form-group select:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

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

/* Scheduler Section */
.scheduler-section {
  margin-top: 0.5rem;
}

.scheduler-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.scheduler-icon {
  color: var(--orange);
  stroke: currentColor;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.scheduler-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: rgba(10, 10, 15, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.875rem;
  backdrop-filter: blur(20px) saturate(180%);
}

/* Timezone Selector */
.scheduler-timezone {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}

.timezone-header {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timezone-icon {
  color: rgba(255, 107, 53, 0.7);
  stroke: currentColor;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.timezone-select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font);
  font-size: 0.9rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
  box-sizing: border-box;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.timezone-select:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.35);
}

.timezone-select:focus {
  border-color: rgba(255, 107, 53, 0.4);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1), inset 0 1px 2px rgba(0, 0, 0, 0.3);
  outline: none;
}

.timezone-select::-ms-expand {
  display: none;
}

.timezone-select option {
  background: rgba(10, 10, 15, 1) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.875rem 1rem !important;
  border: none !important;
  font-size: 0.9rem !important;
  font-family: var(--font) !important;
  font-weight: 500 !important;
}

.timezone-select option:hover,
.timezone-select option:focus {
  background: rgba(255, 107, 53, 0.15) !important;
  color: rgba(255, 255, 255, 1) !important;
}

.timezone-select option:checked,
.timezone-select option[selected] {
  background: rgba(10, 10, 15, 1) !important;
  color: rgba(255, 107, 53, 1) !important;
  font-weight: 600 !important;
}

.timezone-select {
  background-color: rgba(0, 0, 0, 0.3) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.timezone-select:focus {
  background-color: rgba(0, 0, 0, 0.4) !important;
  color: rgba(255, 255, 255, 1) !important;
}

/* Calendar */
.calendar-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0;
}

.calendar-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

.calendar-nav-btn:hover {
  background: rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.3);
  color: rgba(255, 107, 53, 0.9);
}

.calendar-nav-btn:active {
  transform: scale(0.95);
}

.calendar-nav-btn svg {
  stroke: currentColor;
  width: 16px;
  height: 16px;
}

.calendar-month-year {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font);
  letter-spacing: -0.01em;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
  margin-bottom: 0.2rem;
}

.weekday {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0;
  font-family: var(--font);
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font);
  position: relative;
  backdrop-filter: blur(5px);
  min-height: 28px;
}

.calendar-day:hover {
  background: rgba(255, 107, 53, 0.12);
  border-color: rgba(255, 107, 53, 0.25);
  color: rgba(255, 255, 255, 0.9);
}

.calendar-day.other-month {
  opacity: 0.25;
  cursor: not-allowed;
}

.calendar-day.other-month:hover {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.4);
}

.calendar-day.today {
  background: rgba(255, 107, 53, 0.12);
  border-color: rgba(255, 107, 53, 0.3);
  color: rgba(255, 107, 53, 0.9);
  font-weight: 600;
}

.calendar-day.selected {
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.6);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.calendar-day.selected::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 4px rgba(255, 107, 53, 0.8);
}

.calendar-day.available {
  border-color: rgba(76, 175, 80, 0.3);
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}

.calendar-day.available:hover {
  border-color: rgba(76, 175, 80, 0.5);
  background: rgba(76, 175, 80, 0.1);
}

/* Unavailable days (not Friday/Saturday/Sunday) */
.calendar-day:not(.available):not(.other-month) {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Time Slots */
.time-slots-container {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.time-slots-header {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.time-icon {
  color: rgba(255, 107, 53, 0.7);
  stroke: currentColor;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 0.4rem;
  min-height: 50px;
}

.time-slot-placeholder {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  text-align: center;
}

.time-slot-placeholder svg {
  stroke: currentColor;
  opacity: 0.3;
}

.time-slot {
  padding: 0.5rem 0.625rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.time-slot::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.time-slot:hover {
  background: rgba(255, 107, 53, 0.12);
  border-color: rgba(255, 107, 53, 0.3);
  color: rgba(255, 255, 255, 0.95);
}

.time-slot:hover::before {
  left: 100%;
}

.time-slot.selected {
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.6);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

.time-slot.selected::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 4px rgba(255, 107, 53, 0.8);
}

.time-slot.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Appointment Summary */
.appointment-summary {
  padding: 0.75rem;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 6px;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.summary-header {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.summary-icon {
  color: rgba(255, 107, 53, 0.8);
  stroke: currentColor;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}

.summary-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.summary-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font);
}

.summary-time {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 107, 53, 0.9);
  font-family: var(--font);
}

.summary-timezone {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font);
}

.form-status {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

.form-status.success {
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.5);
  color: #4caf50;
}

.form-status.error {
  background: rgba(244, 67, 54, 0.2);
  border: 1px solid rgba(244, 67, 54, 0.5);
  color: #f44336;
}

.contact-footer {
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-footer-rights {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.contact-footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-footer-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s ease;
}

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

/* Buttons */
.btn-primary,
.btn-secondary {
  padding: 1.125rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font);
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--orange);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
  .navigation {
    left: 1.5rem;
    top: 1.5rem;
    width: 260px;
  }

  .main-content {
    padding-left: 240px;
  }

  .section {
    padding: 6rem 4rem;
  }

  .portfolio-section::before,
  .why-section::before,
  .contact-section::before {
    inset: 2rem 1.25rem;
    border-radius: 24px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .why-section .section-header,
  .contact-section .section-header,
  .contact-info,
  .contact-form {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }

  .animated-title-container {
    bottom: 1rem;
    left: 1.5rem;
  }
}

@media (max-width: 768px) {
  .navigation {
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    padding: 0.65rem 0.75rem;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .logo-text {
    display: none;
  }

  .nav-menu {
    order: 2;
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    padding: 0;
    gap: 0.25rem;
  }

  .nav-text {
    display: none;
  }

  .nav-link {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.55rem 0.4rem;
    justify-content: center;
    gap: 0;
    border-radius: 10px;
  }

  .nav-link::before {
    display: none;
  }

  .nav-link:hover {
    transform: none;
  }

  .nav-footer {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: flex-end;
    gap: 0.35rem;
  }

  .nav-logo {
    order: 1;
  }

  .nav-login-button {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .language-switcher {
    border-radius: 9px;
  }

  .lang-button {
    padding: 0.35rem 0.5rem;
  }

  .main-content {
    padding-left: 0;
    padding-top: 120px;
  }

  .section {
    padding: 4rem 2rem;
  }

  .portfolio-section::before,
  .why-section::before,
  .contact-section::before {
    inset: 1.25rem 0.65rem;
    border-radius: 18px;
  }

  .why-section .section-header,
  .contact-section .section-header,
  .contact-info,
  .contact-form,
  .portfolio-details {
    padding: 1.35rem 1.2rem;
    border-radius: 16px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .portfolio-cover-wrapper {
    width: 100%;
    max-width: 400px;
    height: 600px;
  }

  .video-footer {
    bottom: 1rem;
    right: 1rem;
    gap: 0.75rem;
  }

  .video-social-links {
    gap: 0.75rem;
  }

  .video-social-links a {
    width: 28px;
    height: 28px;
  }

  .video-social-links a svg {
    width: 16px;
    height: 16px;
  }

  .video-copyright {
    font-size: 0.65rem;
  }

  .animated-title-container {
    bottom: 0.75rem;
    left: 1rem;
  }

  .ae-text-word {
    font-size: clamp(1.5rem, 6vw, 3rem);
    letter-spacing: 0.03em;
  }

  .contact-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-intro-card {
    padding: 1.5rem 1.25rem;
  }
}
