:root {
  --molten-lava: #780000;
  --brick-red: #c1121f;
  --deep-space-blue: #003049;
  --steel-blue: #669bbc;
  --off-white: #f8f9fa;
  --ocean-blue: #3590c0;
  --vivid-purple: #b45ec1;
}

* {
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  padding: 1rem;
  color: #003049;
  background-color: #f8f9fa;
}

a {
  text-decoration: none;
  color: #c1121f;
}
a:hover {
  text-decoration: underline;
  color: #780000;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", system-ui, sans-serif;
  color: #003049;
}

header h1 {
  font-weight: 700;
}

@media (pointer: coarse), (max-width: 768px) {
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #b45ec1;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
}
.cursor-dot.hovering {
  width: 12px;
  height: 12px;
  background-color: #003049;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 2px solid #669bbc;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}
.cursor-ring.hovering {
  width: 48px;
  height: 48px;
  border-color: #b45ec1;
}

.site-nav {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
}

.hamburger {
  width: 44px;
  height: 44px;
  padding: 0;
  background-color: #003049;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background-color 0.2s ease;
}
.hamburger:hover {
  background-color: #669bbc;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background-color: #fff;
  border-radius: 0.375rem;
  box-shadow: 0 4px 20px rgba(0, 48, 73, 0.15);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.nav-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #003049;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.nav-menu a:hover {
  background-color: #f8f9fa;
  color: #003049;
  text-decoration: none;
}
.nav-menu a:first-child {
  border-radius: 0.375rem 0.375rem 0 0;
}
.nav-menu a:last-child {
  border-radius: 0 0 0.375rem 0.375rem;
}

.code-switcher {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1000;
}

.code-switcher-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  background-color: #003049;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  color: #fff;
  font-size: 1.1rem;
}
.code-switcher-btn:hover {
  background-color: #669bbc;
}

#code-popover {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 48, 73, 0.1);
  border-radius: 0.375rem;
  box-shadow: 0 4px 20px rgba(0, 48, 73, 0.15);
  min-width: 180px;
  position: fixed;
  top: 5rem;
  left: 1.5rem;
  margin: 0;
}

.popover-heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(0, 48, 73, 0.5);
  margin: 0 0 0.75rem 0;
}

.popover-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.375rem;
  color: #003049;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
.popover-option:hover {
  background-color: #f8f9fa;
  text-decoration: none;
}
.popover-option.current {
  opacity: 0.4;
}
.popover-option i {
  width: 20px;
  text-align: center;
}

.popover-option-code i {
  color: #b45ec1;
}

.popover-option-lowcode i {
  color: #3590c0;
}

.popover-option-nocode i {
  color: #c1121f;
}

.hero {
  padding: 6rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
}

.hero-logo {
  width: 120px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 12px rgba(180, 94, 193, 0.3));
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% {
    filter: drop-shadow(0 4px 12px rgba(180, 94, 193, 0.3));
  }
  50% {
    filter: drop-shadow(0 4px 20px rgba(53, 144, 192, 0.5));
  }
}
.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #3590c0 0%, #b45ec1 50%, #3590c0 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 8s ease infinite;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #669bbc;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes gradientText {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.hero-social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hero-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #f8f9fa;
  color: #003049;
  font-size: 1.5rem;
  border: 1px solid rgba(0, 48, 73, 0.1);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.hero-social-link:hover {
  transform: translateY(-3px);
  background-color: #003049;
  color: #fff;
  border-color: #003049;
  text-decoration: none;
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.card-link:hover {
  text-decoration: none;
}
.card-link:hover .card {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 48, 73, 0.15);
}

.card {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 48, 73, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 1px solid rgba(0, 48, 73, 0.08);
  overflow: hidden;
}

.card-title {
  color: #b45ec1;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
}

.card-text {
  color: #003049;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.project-card {
  border-left: 3px solid transparent;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 48, 73, 0.15);
}

.project-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-content {
  flex: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
}

.project-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.project-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 0.375rem;
  transition: transform 0.2s ease;
}

.project-logo-title {
  width: auto;
  height: 36px;
  transition: none;
}

.project-preview {
  width: 100%;
  height: 140px;
  overflow: hidden;
  background-color: #f8f9fa;
}
.project-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.2s ease;
}

.card-link:hover .project-preview img {
  transform: scale(0.95);
}

.project-preview-placeholder {
  background: linear-gradient(135deg, #f8f9fa 0%, rgb(236.1, 238.8, 241.5) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-preview-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(0, 48, 73, 0.02) 8px, rgba(0, 48, 73, 0.02) 16px);
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.project-tech span {
  font-size: 0.65rem;
  padding: 0.2rem 0.45rem;
  border-radius: 2rem;
  background-color: #f8f9fa;
  color: #003049;
  font-weight: 500;
}

.coming-soon {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.75rem;
  border-radius: 2rem;
  background-color: #fff;
  color: #003049;
  box-shadow: 0 2px 8px rgba(0, 48, 73, 0.1);
  position: relative;
  z-index: 1;
  white-space: nowrap;
  transition: transform 0.2s ease;
}
.project-card:hover .coming-soon {
  transform: scale(1.1);
}

.project-doglog {
  border-left-color: #F6A623;
}
.project-doglog .card-title {
  color: #5C3A5E;
}
.project-doglog .project-tech span {
  background-color: rgba(246, 166, 35, 0.12);
  color: rgb(196.4628820961, 125.0218340611, 8.0371179039);
}
.project-doglog .project-preview {
  background-color: rgba(246, 166, 35, 0.1);
}

.project-daytrip {
  border-left-color: #CE796B;
}
.project-daytrip .card-title {
  color: #495867;
}
.project-daytrip .project-tech span {
  background-color: rgba(206, 121, 107, 0.15);
  color: rgb(177.6751269036, 75.6319796954, 58.8248730964);
}
.project-daytrip .project-preview {
  background-color: rgba(206, 121, 107, 0.1);
}

.project-recovery {
  border-left-color: #66B9A3;
}
.project-recovery .card-title {
  color: rgb(66.0762331839, 144.4237668161, 123.6569506726);
}
.project-recovery .coming-soon {
  background-color: #B3D3CF;
  color: rgb(58.0717488789, 126.9282511211, 108.6771300448);
}
.project-recovery .project-tech span {
  background-color: rgba(102, 185, 163, 0.15);
  color: rgb(58.0717488789, 126.9282511211, 108.6771300448);
}
.project-recovery .project-preview-placeholder {
  background: linear-gradient(135deg, rgba(179, 211, 207, 0.4) 0%, rgba(102, 185, 163, 0.2) 100%);
}

.project-dairy {
  border-left-color: #C0293D;
}
.project-dairy .card-title {
  color: #02628E;
}
.project-dairy .coming-soon {
  background-color: rgba(56, 157, 196, 0.15);
  color: #02628E;
}
.project-dairy .project-tech span {
  background-color: rgba(56, 157, 196, 0.12);
  color: #02628E;
}
.project-dairy .project-preview-placeholder {
  background: linear-gradient(135deg, rgba(56, 157, 196, 0.15) 0%, rgba(192, 41, 61, 0.1) 100%);
}

.project-dashboard {
  border-left-color: #6797d2;
}
.project-dashboard .card-title {
  color: #1c1d20;
}
.project-dashboard .coming-soon {
  background-color: rgba(166, 73, 152, 0.15);
  color: rgb(130.5774058577, 57.4225941423, 119.5648535565);
}
.project-dashboard .project-tech span {
  background-color: rgba(103, 151, 210, 0.12);
  color: rgb(48.1979695431, 99.6091370558, 162.8020304569);
}
.project-dashboard .project-preview-placeholder {
  background: linear-gradient(135deg, rgba(103, 151, 210, 0.2) 0%, rgba(166, 73, 152, 0.15) 100%);
}

.video-card {
  background-color: #fff;
  border-radius: 0.375rem;
  box-shadow: 0 2px 8px rgba(0, 48, 73, 0.1);
  overflow: hidden;
  border: 1px solid rgba(0, 48, 73, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 48, 73, 0.15);
}
.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: #ff0000;
}
.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.video-thumbnail {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: rgba(255, 0, 0, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.video-play-btn i {
  color: #fff;
  font-size: 1.5rem;
  margin-left: 4px;
}

.video-caption {
  padding: 1rem 1.25rem;
}
.video-caption h5 {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #003049;
  margin: 0 0 0.25rem 0;
}
.video-caption p {
  font-size: 0.85rem;
  color: rgba(0, 48, 73, 0.7);
  margin: 0;
  line-height: 1.5;
}

.video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  z-index: 10;
}
.lightbox-close i {
  color: #fff;
  font-size: 1.5rem;
}
.lightbox-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-content {
  width: 90%;
  max-width: 1000px;
}

.lightbox-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0.375rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 576px) {
  .project-preview {
    height: 120px;
  }
  .project-content {
    padding: 1rem;
  }
}
.skills-section {
  background-color: #fff;
  border-radius: 0.375rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 48, 73, 0.1);
  border: 1px solid rgba(0, 48, 73, 0.08);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background-color: #f8f9fa;
  border-radius: 2rem;
  font-size: 0.875rem;
  color: #003049;
  transition: transform 0.2s ease;
  cursor: default;
  border: 1px solid rgba(0, 48, 73, 0.12);
}
.skill-tag:hover {
  transform: translateY(-3px);
}
.skill-tag.dimmed {
  opacity: 0.4;
}

.skills-section[data-active-filter=frontend] .skill-tag.highlighted {
  border-color: #3590c0;
}
.skills-section[data-active-filter=backend] .skill-tag.highlighted {
  border-color: #c1121f;
}
.skills-section[data-active-filter=fullstack] .skill-tag.highlighted {
  border-color: #b45ec1;
}
.skills-section[data-active-filter=ui] .skill-tag.highlighted {
  border-color: #669bbc;
}
.skills-section[data-active-filter=product] .skill-tag.highlighted {
  border-color: #E67E22;
}

.skill-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.filter-label {
  font-size: 0.85rem;
  color: #003049;
  margin-right: 0.25rem;
}

.skill-filter {
  padding: 0.35rem 0.75rem;
  border: 1.5px solid rgba(0, 48, 73, 0.15);
  border-radius: 2rem;
  background-color: #fff;
  color: #003049;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.skill-filter:hover {
  background-color: #f8f9fa;
}
.skill-filter[data-filter=frontend]:hover, .skill-filter[data-filter=frontend].active {
  border-color: #3590c0;
}
.skill-filter[data-filter=backend]:hover, .skill-filter[data-filter=backend].active {
  border-color: #c1121f;
}
.skill-filter[data-filter=fullstack]:hover, .skill-filter[data-filter=fullstack].active {
  border-color: #b45ec1;
}
.skill-filter[data-filter=ui]:hover, .skill-filter[data-filter=ui].active {
  border-color: #669bbc;
}
.skill-filter[data-filter=product]:hover, .skill-filter[data-filter=product].active {
  border-color: #E67E22;
}

.skills-graphic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 48, 73, 0.08);
}

.skill-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 280px;
}

.skill-bar {
  position: relative;
}

.skill-bar-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #003049;
  margin-bottom: 0.25rem;
}

.skill-bar-fill {
  height: 8px;
  background: #f8f9fa;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.skill-bar-fill::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--fill-width);
  border-radius: 4px;
  transition: width 1s ease-out;
}

.skill-bar-tech .skill-bar-fill::after {
  background: linear-gradient(90deg, #003049, #669bbc);
}

.skill-bar-ops .skill-bar-fill::after {
  background: linear-gradient(90deg, #c1121f, #e85d5d);
}

.skill-bar-tools .skill-bar-fill::after {
  background: linear-gradient(90deg, #669bbc, #8eb8d4);
}

.skill-bar-soft .skill-bar-fill::after {
  background: linear-gradient(90deg, #b45ec1, #d68fde);
}

.skill-orbit {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.orbit-ring {
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(0, 48, 73, 0.1);
  border-radius: 50%;
}
.orbit-ring-2 {
  inset: 25px;
  border-color: rgba(102, 155, 188, 0.15);
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #003049, #669bbc);
  border-radius: 50%;
}

.orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
  animation: orbit 8s linear infinite;
}
.orbit-dot-1 {
  background: #003049;
  animation-delay: 0s;
  --orbit-radius: 50px;
}
.orbit-dot-2 {
  background: #c1121f;
  animation-delay: -2.67s;
  --orbit-radius: 50px;
}
.orbit-dot-3 {
  background: #669bbc;
  animation-delay: -5.33s;
  --orbit-radius: 35px;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg);
  }
}
.testimonials-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}
.testimonials-scroll::-webkit-scrollbar {
  height: 6px;
}
.testimonials-scroll::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 3px;
}
.testimonials-scroll::-webkit-scrollbar-thumb {
  background: #669bbc;
  border-radius: 3px;
}

.testimonial-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background-color: #fff;
  border-radius: 0.375rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 48, 73, 0.1);
  border: 1px solid rgba(0, 48, 73, 0.08);
}

.testimonial-quote {
  font-style: italic;
  color: #003049;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.testimonial-author strong {
  color: #003049;
  font-size: 0.9rem;
}
.testimonial-author span {
  color: #669bbc;
  font-size: 0.8rem;
}

.contact-box {
  position: relative;
  border-radius: 0.375rem;
  overflow: hidden;
  background-image: url("https://images.unsplash.com/photo-1555066931-4365d14bab8c?w=1200&q=80");
  background-size: cover;
  background-position: center;
  min-height: 400px;
  display: grid;
  grid-template-columns: 45fr 55fr;
  align-items: center;
}

.booking-btn {
  justify-self: center;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.booking-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-decoration: none;
}
.booking-btn i {
  font-size: 1.1rem;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.contact-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.3) 45%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.3) 55%, transparent 80%);
  background-size: 200% 200%;
  background-position: var(--light-position, 0%) 0;
  pointer-events: none;
}

.contact-form-wrapper {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 450px;
  margin: 1.5rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.contact-form-wrapper .form-label {
  color: #fff;
  font-weight: 500;
}
.contact-form-wrapper .form-control {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.contact-form-wrapper .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-form-wrapper .form-control:focus {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.15);
}
.contact-form-wrapper .btn-light {
  background-color: #fff;
  color: #003049;
  font-weight: 600;
  border: none;
}
.contact-form-wrapper .btn-light:hover {
  background-color: #f8f9fa;
  color: #c1121f;
}

.floating-input {
  position: relative;
  margin-bottom: 1.5rem;
}
.floating-input .input-icon {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: color 0.2s ease;
  z-index: 1;
}
.floating-input input,
.floating-input textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 2.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.375rem;
  color: #fff;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.floating-input input:focus,
.floating-input textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}
.floating-input input:focus + label,
.floating-input textarea:focus + label {
  top: -0.6rem;
  left: 0.75rem;
  font-size: 0.75rem;
  color: #fff;
  background-color: #003049;
  padding: 0 0.35rem;
  border-radius: 0.2rem;
}
.floating-input input:focus ~ .input-icon,
.floating-input textarea:focus ~ .input-icon {
  color: #fff;
}
.floating-input input:not(:placeholder-shown) + label,
.floating-input textarea:not(:placeholder-shown) + label {
  top: -0.6rem;
  left: 0.75rem;
  font-size: 0.75rem;
  color: #fff;
  background-color: #003049;
  padding: 0 0.35rem;
  border-radius: 0.2rem;
}
.floating-input textarea {
  resize: vertical;
  min-height: 120px;
}
.floating-input label {
  position: absolute;
  left: 2.75rem;
  top: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.2s ease;
}

.send-btn {
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}
.send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.send-btn:hover i {
  transform: translateX(3px);
}
.send-btn i {
  transition: transform 0.2s ease;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f8f9fa;
  color: #003049;
  font-size: 1.5rem;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.social-link:hover {
  transform: translateY(-3px);
  background-color: #003049;
  color: #fff;
  text-decoration: none;
}

#contact-form {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#contact-form.form-hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
  color: #fff;
}
.form-success.form-visible {
  display: block;
  animation: fadeInUp 0.4s ease;
}
.form-success i {
  font-size: 3.5rem;
  color: #4ade80;
  margin-bottom: 1rem;
  display: block;
}
.form-success h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.form-success p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-footer {
  background-color: #003049;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 2rem 1rem;
  margin: 2rem -1rem -1rem -1rem;
  font-size: 0.875rem;
}
.site-footer p {
  margin-bottom: 0.5rem;
}
.site-footer p:last-child {
  margin-bottom: 0;
}

.footer-disclaimer {
  font-size: 0.8rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  body {
    padding: 0.75rem;
  }
  .hero-logo {
    width: 100px;
  }
  .hero {
    padding: 4rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .hero-social-link {
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
  }
  .skills-section {
    padding: 1.25rem;
  }
  .skills-graphic {
    flex-direction: column;
    gap: 1.5rem;
  }
  .skill-bar-group {
    max-width: 100%;
    width: 100%;
  }
  .skill-orbit {
    width: 100px;
    height: 100px;
  }
  .orbit-dot-1,
  .orbit-dot-2 {
    --orbit-radius: 40px;
  }
  .orbit-dot-3 {
    --orbit-radius: 28px;
  }
  .contact-box {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .contact-overlay {
    clip-path: none;
  }
  .contact-form-wrapper {
    padding: 1.5rem;
    max-width: 100%;
    margin: 0;
    order: 1;
  }
  .booking-btn {
    order: 2;
    justify-self: center;
    width: auto;
  }
  .site-footer {
    margin: 1.5rem -0.75rem -0.75rem -0.75rem;
  }
}
@media (max-width: 576px) {
  body {
    padding: 0.5rem;
  }
  .hero-logo {
    width: 80px;
    margin-bottom: 1rem;
  }
  .site-nav {
    top: 1rem;
    right: 0.75rem;
  }
  .hamburger {
    width: 52px;
    height: 52px;
  }
  .code-switcher-btn {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }
  .hero {
    padding: 3rem 1rem;
    margin-bottom: 1rem;
  }
  .hero-content h1 {
    font-size: 2.25rem;
  }
  .hero-content p {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
  }
  .hero-social-link {
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .skill-tag {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
  .skills-section {
    padding: 1rem;
  }
  .contact-box {
    gap: 1rem;
    padding: 1rem;
  }
  .contact-form-wrapper {
    padding: 1.25rem;
  }
  .booking-btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
  }
  .site-footer {
    margin: 1rem -0.5rem -0.5rem -0.5rem;
    padding: 1.5rem 1rem;
  }
}/*# sourceMappingURL=main.css.map */