/* Professional Variables */
:root {
  --primary-color: #1a365d;
  --primary-light: #2d5a87;
  --secondary-color: #4a90a4;
  --accent-color: #0f2a44;
  --accent-light: #87ceeb;
  --warm-accent: #b8860b;
  --text-dark: #1a202c;
  --text-medium: #4a5568;
  --text-light: #718096;
  --text-lighter: #a0aec0;
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f7fafc;
  --gray-100: #edf2f7;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e0;
  --gray-light: #f8f9fa;
  --gray-lighter: #fafbfc;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow: 0 4px 20px rgba(26, 54, 93, 0.08);
  --shadow-md: 0 8px 25px rgba(26, 54, 93, 0.12);
  --shadow-lg: 0 15px 35px rgba(26, 54, 93, 0.15);
  --shadow-xl: 0 20px 40px rgba(26, 54, 93, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--accent-light));
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section__header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section__label {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  line-height: 1.2;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section__subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Professional Intro Screen */
.intro-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-screen.fade-out {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.intro-skip {
  position: absolute;
  top: 32px;
  right: 32px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
}

.intro-skip:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.intro-content {
  text-align: center;
  color: var(--white);
}

.intro-logo {
  margin-bottom: 48px;
  animation: logoAppear 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-logo-img {
  width: 180px;
  height: auto;
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  object-fit: contain;
  animation: logoGlow 3s ease-in-out infinite alternate;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.intro-text {
  animation: textSlideUp 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.intro-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.intro-line {
  width: 120px;
  height: 2px;
  background: var(--white);
  margin: 24px auto;
  animation: lineExpand 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.2s both;
}

.intro-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0.95;
}

.intro-progress {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.intro-progress-bar {
  height: 100%;
  background: var(--white);
  width: 0;
  animation: progressBar 3.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-content {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-content.show {
  opacity: 1;
}

/* Professional Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--gray-200);
}

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

.nav__logo .logo-img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

.nav__logo .logo-img:hover {
  transform: scale(1.05);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav__link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
  font-size: 0.95rem;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
  border-radius: 2px;
}

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

.nav__link:hover {
  color: var(--primary-color);
}

.nav__link--admin {
  color: var(--warm-accent);
  font-weight: 600;
}

.nav__social {
  display: flex;
  gap: 16px;
}

.nav__social-link {
  color: var(--text-medium);
  font-size: 1.1rem;
  transition: var(--transition);
  padding: 8px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__social-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
  background: var(--gray-100);
}

.nav__toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition);
}

.nav__toggle:hover {
  color: var(--primary-color);
}

/* Language Selector */
.nav__language {
  margin-right: 24px;
}

.language-selector {
  display: flex;
  gap: 8px;
  background: var(--gray-100);
  padding: 4px;
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: transparent;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-medium);
}

.language-btn:hover,
.language-btn.active {
  background: var(--white);
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.language-btn img {
  width: 16px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}

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

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/WhatsApp Image 2025-09-08 at 00.28.06_304c0770.jpg') center/cover;
  z-index: -1;
  animation: subtleZoom 30s ease-in-out infinite alternate;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.85), rgba(45, 90, 135, 0.9));
  z-index: 1;
}

.hero__container {
  text-align: center;
  z-index: 2;
  position: relative;
}

.hero__logo {
  width: 120px;
  height: auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  object-fit: contain;
  margin-bottom: 32px;
  animation: fadeInUp 1s ease-out;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__title {
  margin-bottom: 32px;
}

.hero__title-main {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--white);
  animation: fadeInUp 1s ease-out 0.2s both;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero__title-accent {
  display: block;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--accent-light);
  animation: fadeInUp 1s ease-out 0.3s both;
  letter-spacing: 1px;
  margin-top: 16px;
}

.hero__subtitle {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 48px;
  animation: fadeInUp 1s ease-out 0.4s both;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero__buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--white);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  animation: fadeInUp 1s ease-out 0.6s both;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.hero__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-slow);
}

.hero__button:hover::before {
  left: 100%;
}

.hero__button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: var(--gray-50);
}

.hero__button--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero__button--secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

/* Professional Overview Section */
.overview {
  padding: 120px 0;
  background: var(--gray-50);
}

.overview__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.overview__card {
  background: var(--white);
  padding: 48px 32px;
  border-radius: var(--border-radius-xl);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition-slow);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.overview__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.overview__card:hover::before {
  transform: scaleX(1);
}

.overview__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.overview__icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.overview__card:hover .overview__icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.overview__icon i {
  font-size: 2rem;
  color: var(--white);
}

.overview__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.overview__description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 1rem;
}

.overview__link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  font-size: 0.95rem;
}

.overview__link:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

/* Featured Projects */
.featured-projects {
  background: var(--white);
}

.featured-projects__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.featured-projects__cta {
  text-align: center;
}

.project__card {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition-slow);
  background: var(--white);
  cursor: pointer;
  border: 1px solid var(--gray-200);
}

.project__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.project__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.project__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26, 54, 93, 0.95));
  color: var(--white);
  padding: 40px 24px 24px;
  transform: translateY(100%);
  transition: var(--transition-slow);
}

.project__card:hover .project__overlay {
  transform: translateY(0);
}

.project__card:hover .project__img {
  transform: scale(1.05);
}

.project__content {
  text-align: left;
  position: relative;
}

.project__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.project__category {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
  margin-bottom: 5px;
}

.project__description {
  font-size: 0.95rem;
  opacity: 0.85;
  font-weight: 400;
}

/* CTA Section */
.cta {
  position: relative;
  background: var(--primary-color);
  color: var(--white);
}

.cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/WhatsApp Image 2025-09-08 at 00.28.06_304c0770.jpg') center/cover;
  z-index: -1;
}

.cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 54, 93, 0.9);
  z-index: 1;
}

.cta__content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta__title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--white);
}

.cta__subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta__buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cookie Consent */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  padding: 24px;
  transform: translateY(100%);
  transition: var(--transition);
  border-top: 1px solid var(--gray-200);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.cookie-banner__text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.cookie-banner__text p {
  color: var(--text-light);
  line-height: 1.5;
}

.cookie-banner__buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.cookie-banner__btn--settings {
  background: var(--gray-200);
  color: var(--text-dark);
}

.cookie-banner__btn--settings:hover {
  background: var(--gray-300);
}

.cookie-banner__btn--accept {
  background: var(--primary-color);
  color: var(--white);
}

.cookie-banner__btn--accept:hover {
  background: var(--accent-color);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal__content {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.cookie-modal__header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
}

.cookie-modal__close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition);
}

.cookie-modal__close:hover {
  background: var(--gray-100);
  color: var(--text-dark);
}

.cookie-modal__body {
  padding: 24px;
}

.cookie-category {
  margin-bottom: 24px;
}

.cookie-category__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.cookie-category p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gray-300);
  transition: var(--transition);
  border-radius: 24px;
}

.cookie-toggle__slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--white);
  transition: var(--transition);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.cookie-toggle input:checked + .cookie-toggle__slider {
  background-color: var(--primary-color);
}

.cookie-toggle input:checked + .cookie-toggle__slider:before {
  transform: translateX(26px);
}

.cookie-toggle input:disabled + .cookie-toggle__slider {
  background-color: var(--gray-300);
  cursor: not-allowed;
}

.cookie-modal__footer {
  padding: 24px;
  border-top: 1px solid var(--gray-200);
  text-align: right;
}

/* Service Card Buttons */
.service__actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-size: 0.9rem;
}

.service__btn--primary {
  background: var(--primary-color);
  color: var(--white);
}

.service__btn--primary:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.service__btn--secondary {
  background: var(--gray-100);
  color: var(--text-dark);
  border: 1px solid var(--gray-200);
}

.service__btn--secondary:hover {
  background: var(--gray-200);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Contact Form Enhancements */
.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__info-section {
  background: var(--white);
  padding: 48px;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.contact__form-section {
  background: var(--white);
  padding: 48px;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.contact__header {
  margin-bottom: 32px;
  text-align: center;
}

.contact__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact__subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact__form-header {
  margin-bottom: 32px;
  text-align: center;
}

.contact__form-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact__form-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.contact__form-group {
  position: relative;
}

.contact__label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.contact__input,
.contact__textarea,
.contact__select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
  font-family: inherit;
}

.contact__input:focus,
.contact__textarea:focus,
.contact__select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.contact__input-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.contact__form-group.focused .contact__input-border {
  width: 100%;
}

.contact__form-actions {
  text-align: center;
  margin-top: 32px;
}

.contact__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact__button:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact__button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@keyframes ripple {
  to {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

.contact__form-note {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact__social-section {
  margin-top: 40px;
  text-align: center;
}

.contact__social-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.contact__social {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.contact__social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--gray-100);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: var(--transition);
  font-weight: 500;
}

.contact__social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.contact__map-section {
  margin-top: 80px;
}

.contact__map-header {
  text-align: center;
  margin-bottom: 32px;
}

.contact__map-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact__map-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
}

.contact__map {
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}

.contact__iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact__map-actions {
  text-align: center;
  margin-top: 24px;
}

.contact__map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact__map-link:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact__map-link i {
  font-size: 0.9rem;
}

/* Project Gallery Enhancements */
.projects__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.project__card {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition-slow);
  border: 1px solid var(--gray-200);
  cursor: pointer;
}

.project__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.project__image-wrapper {
  position: relative;
  overflow: hidden;
}

.project__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.project__card:hover .project__img {
  transform: scale(1.05);
}

.project__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-color);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--border-radius);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project__content {
  padding: 24px;
}

.project__header {
  margin-bottom: 16px;
}

.project__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.project__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.project__location,
.project__year {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.project__description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.project__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.project__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-size: 0.9rem;
}

.project__btn--primary {
  background: var(--primary-color);
  color: var(--white);
}

.project__btn--primary:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.project__btn--secondary {
  background: var(--gray-100);
  color: var(--text-dark);
  border: 1px solid var(--gray-200);
}

.project__btn--secondary:hover {
  background: var(--gray-200);
  transform: translateY(-2px);
}

/* Projects Load More Button */
.projects__load-more {
  text-align: center;
}

.projects__load-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.projects__load-btn:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

/* Filter Buttons */
.projects__filter {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.filter__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.filter__btn:hover,
.filter__btn.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 100px;
  right: 24px;
  padding: 16px 20px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 10001;
  transform: translateX(400px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 400px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--white);
}

.notification--success {
  background: var(--primary-color);
}

.notification--error {
  background: #e53e3e;
}

.notification--info {
  background: #4a90a4;
}

.notification__content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.notification__close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: var(--transition);
}

.notification__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 80px 0 32px;
}

.footer__container {
  text-align: center;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 32px;
}

.footer__logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.footer__logo-img:hover {
  transform: scale(1.05);
}

.footer__links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__link {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
  position: relative;
  font-size: 0.95rem;
}

.footer__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
}

.footer__link:hover::after {
  width: 100%;
}

.footer__link:hover {
  color: var(--secondary-color);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social-link {
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
  padding: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__social-link:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.footer__copy {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-lighter);
  font-size: 0.95rem;
}

/* Page Header Styles */
.page-header {
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/WhatsApp Image 2025-09-08 at 00.28.06_304c0770.jpg') center/cover;
  z-index: -1;
}

.page-header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.85), rgba(45, 90, 135, 0.9));
  z-index: 1;
}

.page-header__content {
  text-align: center;
  z-index: 2;
  position: relative;
  color: var(--white);
}

.page-header__title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-header__subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Loading Message */
.loading-message {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-light);
  font-size: 1.1rem;
}

.loading-message p {
  margin: 0;
}

/* Animations */
@keyframes logoAppear {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.15));
    transform: scale(1);
  }
  100% {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    transform: scale(1.02);
  }
}

@keyframes textSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineExpand {
  0% {
    width: 0;
  }
  100% {
    width: 120px;
  }
}

@keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

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

@keyframes subtleZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.02);
  }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Admin Styles */
.admin-body {
  font-family: 'Inter', sans-serif;
  background: var(--gray-50);
}

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  padding: 24px;
}

.admin-login__container {
  background: var(--white);
  padding: 48px;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.admin-login__header {
  margin-bottom: 32px;
}

.admin-login__logo {
  height: 60px;
  margin-bottom: 24px;
}

.admin-login__header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.admin-login__header p {
  color: var(--text-light);
}

.admin-login__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.admin-form__group {
  text-align: left;
}

.admin-form__group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.admin-form__group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.admin-form__group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.admin-btn {
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.95rem;
}

.admin-btn--primary {
  background: var(--primary-color);
  color: var(--white);
}

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

.admin-login__footer {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.admin-login__back {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  transition: var(--transition);
}

.admin-login__back:hover {
  color: var(--accent-color);
}

/* Responsive Design */
@media screen and (max-width: 968px) {
  .nav__menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-200);
  }

  .nav__menu.show-menu {
    left: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 32px;
  }

  .nav__toggle {
    display: block;
  }

  .intro-title {
    font-size: 3rem;
  }

  .intro-logo-img {
    width: 140px;
  }
  
  .page-header__title {
    font-size: 2.8rem;
  }
  
  .page-header__subtitle {
    font-size: 1.1rem;
  }

  .hero__title-main {
    font-size: 3.5rem;
  }

  .hero__title-accent {
    font-size: 1.5rem;
  }
  
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .overview__container {
    grid-template-columns: 1fr;
  }

  .footer__content {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
  }
  
  .page-header {
    height: 40vh;
  }

  .cookie-banner__content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cookie-banner__buttons {
    justify-content: center;
  }

  .cta__title {
    font-size: 2.2rem;
  }

  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .about__highlights {
    align-items: center;
  }
  
  .about__subtitle {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

@media screen and (max-width: 576px) {
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 80px 0;
  }

  .section__title {
    font-size: 2.5rem;
  }

  .intro-title {
    font-size: 2.5rem;
  }

  .intro-logo-img {
    width: 120px;
  }
  
  .page-header__title {
    font-size: 2.2rem;
  }
  
  .page-header__subtitle {
    font-size: 1rem;
  }

  .hero__title-main {
    font-size: 2.8rem;
  }

  .hero__title-accent {
    font-size: 1.3rem;
  }

  .hero__subtitle {
    font-size: 1.1rem;
  }
  
  .page-header {
    height: 35vh;
  }

  .footer__content {
    gap: 20px;
  }

  .footer__links {
    flex-direction: column;
    gap: 16px;
  }

  .intro-skip {
    top: 20px;
    right: 20px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .cookie-banner {
    padding: 16px;
  }

  .cookie-banner__buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-banner__btn {
    width: 100%;
    justify-content: center;
  }

  .admin-login__container {
    padding: 32px 24px;
  }

  .featured-projects__container {
    grid-template-columns: 1fr;
  }
}