@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

:root {
  --background: 40 20% 97%;
  --foreground: 30 10% 15%;
  
  --card: 40 15% 95%;
  --card-foreground: 30 10% 15%;
  
  --popover: 40 20% 97%;
  --popover-foreground: 30 10% 15%;
  
  --primary: 30 10% 15%;
  --primary-foreground: 40 20% 97%;
  
  --secondary: 35 15% 90%;
  --secondary-foreground: 30 10% 25%;
  
  --muted: 35 10% 92%;
  --muted-foreground: 30 5% 45%;
  
  --accent: 28 30% 45%;
  --accent-foreground: 40 20% 97%;
  
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  
  --border: 35 15% 88%;
  --input: 35 15% 88%;
  --ring: 28 30% 45%;
  --radius: 0.5rem;
  
  --warm: 30 25% 92%;
  --warm-foreground: 30 10% 25%;
  
  --font-display: "Cormorant Garamond", serif;
  --font-body: "DM Sans", sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.30, 1);
  --transition-fast: all 0.2s ease-in-out;
}

/* Base resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.2;
}

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: hsl(var(--background));
}
::-webkit-scrollbar-thumb {
  background: hsl(var(--border));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--accent) / 0.5);
}

/* Layout container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: hsl(var(--background));
  border-bottom: 1px solid hsl(var(--border) / 0.8);
  transition: var(--transition-smooth);
  padding: 1.25rem 0;
}

.navbar.scrolled {
  background-color: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border) / 0.5);
  padding: 0.75rem 0;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: hsl(var(--foreground));
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-accent {
  color: hsl(var(--accent));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-item a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--foreground) / 0.7);
  position: relative;
  padding: 0.25rem 0;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: hsl(var(--accent));
  transition: var(--transition-fast);
}

.nav-item a:hover {
  color: hsl(var(--foreground));
}

.nav-item a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid #25D366;
  background-color: #25D366;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition-fast);
  font-weight: 600;
}

.nav-cta:hover {
  background-color: #128C7E;
  border-color: #128C7E;
  color: #ffffff;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 991px) {
  .nav-links,
  .nav-cta {
    display: none !important;
  }
  
  .nav-toggle {
    display: block;
  }
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: hsl(var(--foreground));
  margin: 4px 0;
  transition: var(--transition-fast);
}

/* Mobile Nav Open Animation */
.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  height: calc(100vh - 84px);
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
  background-color: hsl(var(--warm));
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: calc(100vh - 84px);
    padding-top: 8rem;
    padding-bottom: 4rem;
    align-items: center;
  }
}

/* Hero background image and overlay */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(15, 12, 11, 0.45), rgba(15, 12, 11, 0.85)), url('assets/images/bunti_15.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-bg-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.3;
  pointer-events: none;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 20s infinite alternate;
}

.hero-bg-shape:nth-child(1) {
  width: 500px;
  height: 500px;
  background-color: hsl(var(--accent) / 0.2);
  top: -10%;
  right: -5%;
}

.hero-bg-shape:nth-child(2) {
  width: 400px;
  height: 400px;
  background-color: hsl(var(--muted-foreground) / 0.15);
  bottom: 10%;
  left: -5%;
  animation-delay: -5s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -30px) scale(1.1); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: hsl(var(--accent));
  margin-bottom: 2.5rem;
  display: block;
  font-weight: 500;
  line-height: 1.5;
  animation: fadeInUp 1s ease forwards;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  max-width: 650px;
  font-weight: 300;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* Hero specific button overrides for dark background readability */
.hero .btn-primary {
  background-color: hsl(var(--accent));
  border-color: hsl(var(--accent));
  color: #ffffff;
}

.hero .btn-primary:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.hero .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-outline:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border: 1px solid hsl(var(--primary));
}

.btn-primary:hover {
  background-color: transparent;
  color: hsl(var(--primary));
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
}

.btn-outline:hover {
  border-color: hsl(var(--foreground));
  transform: translateY(-2px);
}

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

/* Sections Base */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-secondary {
  background-color: hsl(var(--muted) / 0.3);
}

.section-header {
  max-width: 800px;
  margin-bottom: 5rem;
}

.section-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--accent));
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 300;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  font-weight: 300;
  max-width: 650px;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}

.stat-item {
  border-top: 1px solid hsl(var(--border));
  padding-top: 2rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: hsl(var(--accent));
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--foreground) / 0.8);
  font-weight: 500;
}

.stat-desc {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: hsl(var(--popover));
  border: 1px solid hsl(var(--border) / 0.5);
  padding: 3rem 2.5rem;
  border-radius: var(--radius);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px hsl(var(--foreground) / 0.05);
  border-color: hsl(var(--accent) / 0.3);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: hsl(var(--accent));
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.service-desc {
  font-size: 0.95rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  flex-grow: 1;
  font-weight: 300;
}

.service-features-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--foreground) / 0.6);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.service-features {
  list-style: none;
}

.service-feature-item {
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.85);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.service-feature-item::before {
  content: "—";
  color: hsl(var(--accent));
}

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

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

/* Portfolio Section */
.portfolio-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
  list-style: none;
}

.portfolio-tab {
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  border: 1px solid hsl(var(--border));
  background-color: transparent;
  color: hsl(var(--muted-foreground));
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.portfolio-tab:hover {
  border-color: hsl(var(--foreground) / 0.5);
  color: hsl(var(--foreground));
}

.portfolio-tab.active {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

.portfolio-desc-wrapper {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.portfolio-project-desc {
  font-size: 1.1rem;
  color: hsl(var(--muted-foreground));
  font-style: italic;
  font-weight: 300;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  transition: var(--transition-smooth);
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  border: 1px solid hsl(var(--border) / 0.3);
}

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

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, hsl(var(--primary) / 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 10;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item-title {
  color: hsl(var(--primary-foreground));
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.portfolio-item-category {
  color: hsl(var(--accent-foreground) / 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

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

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

/* Modal Lightbox */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(15, 12, 11, 0.95);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 1010;
}

.modal-close:hover {
  transform: rotate(90deg);
  color: hsl(var(--accent));
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 1010;
}

.modal-nav:hover {
  color: hsl(var(--accent));
}

.modal-prev {
  left: 2rem;
}

.modal-next {
  right: 2rem;
}

@media (max-width: 768px) {
  .modal-nav {
    display: none;
  }
}

.modal-content {
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.modal-image-wrapper {
  width: 100%;
  max-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 4px;
}

.modal-caption {
  text-align: center;
  color: #fff;
  max-width: 600px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.modal-desc {
  font-size: 0.95rem;
  color: #c5c1b9;
  font-weight: 300;
  line-height: 1.5;
}

/* Process Section */
.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: hsl(var(--border));
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .process-timeline::before {
    left: 2rem;
  }
}

.process-step {
  display: flex;
  margin-bottom: 6rem;
  position: relative;
  align-items: flex-start;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step-odd {
  flex-direction: row-reverse;
}

.process-node {
  position: absolute;
  top: 0;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: hsl(var(--accent));
  font-weight: 500;
}

@media (max-width: 768px) {
  .process-node {
    left: 2rem;
  }
  .process-step-odd {
    flex-direction: row;
  }
}

.process-content {
  width: 44%;
  padding: 0.5rem 0;
}

.process-step-odd .process-content {
  text-align: right;
}

@media (max-width: 768px) {
  .process-content {
    width: calc(100% - 4.5rem);
    margin-left: 4.5rem;
  }
  .process-step-odd .process-content {
    text-align: left;
  }
}

.process-step-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.process-step-desc {
  font-size: 0.95rem;
  color: hsl(var(--muted-foreground));
  font-weight: 300;
  line-height: 1.7;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.testimonial-card {
  background-color: hsl(var(--popover));
  border: 1px solid hsl(var(--border) / 0.5);
  padding: 4rem 3rem;
  border-radius: var(--radius);
  position: relative;
}

.testimonial-quote {
  font-size: 1.15rem;
  color: hsl(var(--foreground) / 0.9);
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: hsl(var(--warm));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: hsl(var(--accent));
  border: 1px solid hsl(var(--border));
}

.testimonial-author-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.testimonial-author-role {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

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

/* Call to Action Banner */
.cta-banner {
  background-color: hsl(var(--foreground));
  color: hsl(var(--background));
  text-align: center;
  padding: 6rem 0;
}

.cta-banner .section-title {
  color: hsl(var(--background));
  margin-bottom: 1.5rem;
}

.cta-banner .section-description {
  color: hsl(var(--background) / 0.7);
  margin: 0 auto 3rem auto;
}

.cta-banner .btn-primary {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  border-color: hsl(var(--background));
}

.cta-banner .btn-primary:hover {
  background-color: transparent;
  color: hsl(var(--background));
  border-color: hsl(var(--background));
}

/* Contact & Footer Section */
.contact-section {
  background-color: #120f0e; /* Custom deep warm charcoal dark background */
  color: #edeae4;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-section .section-title {
  color: #edeae4;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details {
  list-style: none;
  margin-bottom: 3rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-detail-icon {
  width: 24px;
  height: 24px;
  color: hsl(var(--accent));
  flex-shrink: 0;
}

.contact-detail-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-detail-value {
  font-size: 1.1rem;
  font-weight: 300;
}

.contact-form {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: var(--radius);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1rem;
  color: #edeae4;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: hsl(var(--accent));
  background-color: rgba(255, 255, 255, 0.05);
}

.contact-form .btn-submit {
  width: 100%;
  background-color: hsl(var(--accent));
  color: #fff;
  border: 1px solid hsl(var(--accent));
}

.contact-form .btn-submit:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .contact-form {
    padding: 2rem;
  }
}

/* Toast System */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toast {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
}

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

/* Footer elements */
.footer {
  background-color: #0f0c0b;
  color: rgba(255, 255, 255, 0.4);
  padding: 3rem 0;
  font-size: 0.85rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

/* Mobile Navbar overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsl(var(--background));
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  transform: translateX(100%);
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
  transform: translateX(0);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.mobile-nav-item a {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 300;
  color: hsl(var(--foreground));
}

.mobile-nav-cta {
  width: 100%;
  padding: 1rem;
  text-align: center;
  border: 1px solid hsl(var(--primary));
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}
