:root {
    --bg-dark: #120626;
    --bg-darker: #0a0312;
    --primary: #8A3CFF;
    --secondary: #ff8de8;
    --accent: #2a0342;
    --text: #ffffff;
    --text-muted: #a78bfa;
    --border: rgba(44, 8, 25, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1200px;
    --section-padding: 120px;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* texto não editavel  */
body:hover {
    cursor: default;}
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(138, 60, 255, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 71, 218, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 60% 40%, rgba(138, 60, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(138, 60, 255, 0.05) 0%, rgba(18, 6, 38, 0.8) 50%, rgba(138, 60, 255, 0.03) 100%);
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.text-secondary {
    color: var(--secondary);
}

.text-accent {
    color: var(--accent);
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.neon-text {
    text-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.placeholder-text {
    font-family: monospace;
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.social-btn {
  width: 70px;
  height: 70px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    pointer-events: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);

  color: #ffffff;
  font-size: 26px;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-5px);

  color: #8b3dff;
  border-color: #8b3dff;

  background: rgba(139, 61, 255, 0.12);

  box-shadow:
    0 0 15px rgba(139, 61, 255, 0.35),
    0 0 30px rgba(139, 61, 255, 0.15);
}

.social-btn svg {
    width: 26px;
    height: 26px;
    display: block;
    pointer-events: none;
}

.social-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    transition: all var(--transition-medium);
    cursor: pointer;
}

.btn .icon {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s ease-out;
    pointer-events: none;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: #7a2df5;
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(138, 60, 255, 0.6);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

.btn-glow {
    box-shadow: 0 0 20px -5px var(--primary), 0 0 40px -10px var(--primary);
    animation: button-glow-idle 2s ease-in-out infinite;
}

.btn-glow:hover {
    box-shadow: 0 0 40px 0px var(--primary), 0 0 80px -10px var(--primary);
    animation: button-glow-active 0.6s ease-out;
}

@keyframes button-glow-idle {
    0%, 100% {
        box-shadow: 0 0 20px -5px var(--primary), 0 0 40px -10px var(--primary);
    }
    50% {
        box-shadow: 0 0 30px -5px var(--primary), 0 0 60px -10px var(--primary);
    }
}

@keyframes button-glow-active {
    0% {
        box-shadow: 0 0 20px -5px var(--primary), 0 0 40px -10px var(--primary);
    }
    100% {
        box-shadow: 0 0 40px 0px var(--primary), 0 0 80px -10px var(--primary);
    }
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary);
    z-index: 1000;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s linear;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(138, 60, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(138, 60, 255, 0.2);
    box-shadow: 0 0 30px rgba(138, 60, 255, 0.1);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: center;
}

.nav-logo-image {
    width: 56px;
    height: 42px;
    object-fit: contain;
    transform: translateY(-3px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-medium);
}

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

.nav-toggle {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 24px;
    height: 2px;
    background: white;
    position: absolute;
    left: 4px;
    transition: all var(--transition-medium);
}

.hamburger {
    top: 15px;
}

.hamburger::before {
    content: '';
    top: -8px;
}

.hamburger::after {
    content: '';
    top: 8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(18, 6, 38, 0.98);
    backdrop-filter: blur(20px);
    padding-top: 100px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    transition: color var(--transition-fast);
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(138, 60, 255, 0.1) 0%,
        rgba(18, 6, 38, 0.6) 30%,
        rgba(138, 60, 255, 0.05) 70%,
        var(--bg-dark) 100%
    );
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    mix-blend-mode: screen;
    transition: transform 0.3s ease-out;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(138, 60, 255, 0.4);
    top: 20%;
    left: 20%;
    animation: pulse 4s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 71, 218, 0.25);
    bottom: 20%;
    right: 20%;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.floating-symbols {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.floating-symbol {
    position: absolute;
    left: var(--x, 50%);
    top: var(--y, 50%);
    width: var(--size, 24px);
    height: var(--size, 24px);
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    will-change: transform, opacity, filter;
    display: flex;
    opacity: 0.95;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(138, 60, 255, 0.18), 0 0 18px rgba(66, 232, 255, 0.06);
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25)) saturate(1.05);
    mix-blend-mode: screen;
    animation:
        floatBob var(--dur, 6s) cubic-bezier(0.4, 0.0, 0.2, 1) infinite,
        floatSpin calc(var(--dur, 6s) * 1.5) linear infinite;
    animation-delay: var(--delay, 0s);
    transition: transform 0.25s var(--transition-fast), opacity 0.25s var(--transition-fast);
}

@keyframes floatBob {
    0% { transform: translate(-50%, -50%) translateY(0) scale(1) rotate(0deg); opacity: 0.92; }
    20% { transform: translate(-50%, -50%) translateY(-10px) scale(1.03) rotate(6deg); opacity: 0.98; }
    50% { transform: translate(-50%, -50%) translateY(0) scale(0.98) rotate(0deg); opacity: 0.9; }
    80% { transform: translate(-50%, -50%) translateY(8px) scale(1.02) rotate(-5deg); opacity: 0.96; }
    100% { transform: translate(-50%, -50%) translateY(0) scale(1) rotate(0deg); opacity: 0.92; }
}

@keyframes floatSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    25% { transform: translate(-50%, -50%) rotate(4deg); }
    50% { transform: translate(-50%, -50%) rotate(0deg); }
    75% { transform: translate(-50%, -50%) rotate(-4deg); }
    100% { transform: translate(-50%, -50%) rotate(0deg); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 24px);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 48px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 80px;
}

.hero-frame {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 2/1;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow:
        0 0 40px rgba(138, 60, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.hero-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(138, 60, 255, 0.05), rgba(66, 232, 255, 0.05));
    opacity: 0.2;
    transition: opacity var(--transition-medium);
}

.hero-frame:hover::before {
    opacity: 0.8;
}

.hero-frame-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image {
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.modal-image {
    max-width: 100%;
    width: 100%;
    display: block;
}

.experience-strip {
    padding: 48px 0;
    border-top: 1px solid rgba(138, 60, 255, 0.15);
    border-bottom: 1px solid rgba(138, 60, 255, 0.15);
    background: rgba(138, 60, 255, 0.03);
    backdrop-filter: blur(10px);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.experience-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(138, 60, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
    box-shadow: 0 0 25px rgba(138, 60, 255, 0.3);
}

.experience-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
    transition: stroke var(--transition-medium);
}

.experience-item:hover .experience-icon {
    background: var(--primary);
}

.experience-item:hover .experience-icon svg {
    stroke: white;
}

.experience-item span {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.projects {
    padding: var(--section-padding) 0;
}

.section-header {
    margin-bottom: 64px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

.behance-projects-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 13px;
    transition: color var(--transition-medium), transform var(--transition-medium);
}

.behance-projects-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform var(--transition-medium);
}

.behance-projects-link:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.behance-projects-link:hover svg {
    transform: translateX(3px);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.project-card {
    cursor: pointer;
    transition: transform var(--transition-medium);
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-image {
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
    border: 1px solid rgba(138, 60, 255, 0.1);
    transition: border-color var(--transition-medium), box-shadow var(--transition-medium);
}

.project-card:hover .project-image {
    border-color: rgba(138, 60, 255, 0.6);
    box-shadow: 0 20px 40px -20px rgba(138, 60, 255, 0.4);
}

.project-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.7s ease;
}

.project-card:hover .project-bg {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: background var(--transition-medium);
}

.project-card:hover .project-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.project-hover-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-medium);
}

.project-card:hover .project-hover-content {
    transform: translateY(0);
    opacity: 1;
}

.project-category {
    font-family: monospace;
    font-size: 11px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.project-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    transition: color var(--transition-fast);
}

.project-card:hover .project-title {
    color: var(--primary);
}

.project-description {
    font-size: 14px;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}

.hero-carousel {
    position: relative;
    margin: 80px auto 120px;
    max-width: 1200px;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.carousel-track-container {
    overflow: hidden;
    padding: 0 60px;
}

.carousel-track {
    display: flex;
    gap: 1px;
    animation: carousel-scroll 19s linear infinite;
    will-change: transform;
}


@keyframes carousel-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-185%);
    }
}

.carousel-slide {
    flex: 0 0 auto;
    height: clamp(200px, 26vw, 300px);
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    transition:
        transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    filter: none;
    transform: scale(0.94);
    margin: 0 15px;
}

.carousel-slide.current-slide {
    filter: none;
    opacity: 1;
    transform: scale(1.06);
}

.carousel-slide img {
    width: auto;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    box-shadow: 0 0.5px 10px rgba(0, 0, 0, 0.35);
}

.carousel-button {
    display: none;
}

.carousel-button-left {
    left: 16px;
}

.carousel-button-right {
    right: 16px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.carousel-indicator.current-slide {
    background: var(--primary);
    transform: scale(1.3);
}

.project-tag {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.6);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: all var(--transition-medium);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.contact-modal {
    max-width: 760px;
    background: linear-gradient(180deg, rgba(16, 9, 28, 0.97), rgba(11, 5, 24, 0.99));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.contact-modal-header {
    padding: 40px 36px 28px;
    background: radial-gradient(circle at top left, rgba(138, 60, 255, 0.24), transparent 28%),
                linear-gradient(135deg, rgba(70, 18, 255, 0.25), rgba(11, 5, 24, 0.95));
}

.contact-modal-top {
    position: relative;
    z-index: 1;
}

.contact-modal-label {
    display: inline-flex;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d8d3ff;
    margin-bottom: 16px;
}

.contact-modal-title {
    color: #ffffff;
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 14px;
}

.contact-modal-copy {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    max-width: 650px;
}

.contact-modal-body {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 32px;
    padding: 32px 36px 40px;
}

.contact-main {
    display: grid;
    gap: 24px;
}

.contact-bubble {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.85;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    animation: floatBubble 6s ease-in-out infinite;
}

@keyframes floatBubble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.contact-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    padding: 0;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-decoration: none;
    transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-link:hover {
    transform: translateY(-4px);
    border-color: rgba(138, 60, 255, 0.35);
    background: rgba(138, 60, 255, 0.15);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.contact-link-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-modal-sidebar {
    display: grid;
    gap: 24px;
}

.contact-quote {
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.contact-modal .modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-modal .modal-tag {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
}

.contact-cta-card {
    display: grid;
    gap: 20px;
    padding: 34px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
}

.contact-pill {
    display: inline-flex;
    padding: 8px 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d8d3ff;
    background: rgba(138, 60, 255, 0.16);
    border-radius: 999px;
    border: 1px solid rgba(119, 58, 211, 0.25);
    width: fit-content;
}

.contact-cta-copy {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 600px;
}

.contact-footer {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.contact .contact-footer p {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
    .contact-modal-body {
        grid-template-columns: 1fr;
    }

    .contact-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-cta-card {
        padding: 26px;
    }
}

.modal-cover {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: #000;
}

.modal-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.modal-header {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.modal-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-dark) 0%, rgba(18, 6, 38, 0.4) 100%);
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-close svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.modal-header-content {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    z-index: 5;
}

.modal-category {
    font-family: monospace;
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 8px;
}

.modal-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
}

.modal-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    padding: 32px;
}

.modal-main h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.modal-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.modal-details p {
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.7;
}

.modal-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.modal-section h4 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modal-tag {
    padding: 6px 12px;
    background: rgba(138, 60, 255, 0.1);
    border: 1px solid rgba(138, 60, 255, 0.2);
    border-radius: 50px;
    font-size: 13px;
    color: var(--primary);
}

.about {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, var(--bg-dark), rgba(75, 19, 2, 0.486));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-avatar {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 4px solid rgba(138, 60, 255, 0.2);
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
}

.avatar-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 39, 118, 0.781), rgba(255, 71, 218, 0.2));
}

.avatar-placeholder span {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
}

.about-glow {
    position: absolute;
    inset: -20%;
    background: rgba(138, 60, 255, 0.2);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.about-text {
    margin-bottom: 32px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 24px;
}

/* —— Skills Network —— */
.skills-section {
    padding: calc(var(--section-padding) * 0.75) 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), var(--bg-darker));
    position: relative;
    overflow: hidden;
}

.skills-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(138, 60, 255, 0.12) 0%, rgba(255, 71, 218, 0.08) 40%, transparent 70%);
    z-index: 0;
}

.skills-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.skills-section-header {
    position: relative;
    z-index: 3;
    margin-bottom: 64px;
}

.skills-eyebrow {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 8px;
}

.skills-heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.skills-heading-main {
    color: var(--text);
}

.skills-heading-accent {
    color: var(--primary);
}

.skills-lead {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 24px;
}

.skills-header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

.skills-network {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
}

.skills-network::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(138, 60, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138, 60, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.skills-network:hover::after {
    opacity: 0.3;
}

.skills-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 60, 255, 0.4) 0%, rgba(255, 71, 218, 0.25) 50%, rgba(66, 232, 255, 0.15) 80%, transparent 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(138, 60, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow:
        0 0 50px rgba(138, 60, 255, 0.5),
        0 0 100px rgba(255, 71, 218, 0.3),
        inset 0 0 40px rgba(66, 232, 255, 0.25);
    animation: core-breath 4s ease-in-out infinite;
}

.core-butterfly {
    width: 120px;
    height: 120px;
    object-fit: contain;
    z-index: 4;
    animation: butterfly-float 4s ease-in-out infinite;
}

@keyframes butterfly-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        filter: drop-shadow(0 0 20px rgba(138, 60, 255, 0.6));
    }
    50% {
        transform: translateY(-5px) rotate(2deg);
        filter: drop-shadow(0 0 30px rgba(255, 71, 218, 0.8));
    }
}

.core-inner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(138, 60, 255, 0.15) 60%, transparent 100%);
    position: relative;
    animation: core-rotate 20s linear infinite;
}

.core-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.core-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particle-orbit 3s linear infinite;
}

.core-particle:nth-child(1) { top: 10%; left: 50%; animation-delay: 0s; }
.core-particle:nth-child(2) { top: 50%; right: 10%; animation-delay: 1s; }
.core-particle:nth-child(3) { bottom: 10%; left: 50%; animation-delay: 2s; }

.core-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    opacity: 0.6;
    fill: rgba(255, 255, 255, 0.8);
}

.energy-field {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(138, 60, 255, 0.2);
    animation: energy-pulse 3s ease-in-out infinite;
    opacity: 0.4;
}

@keyframes core-breath {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes core-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes particle-orbit {
    0% { transform: rotate(0deg) translateX(30px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(30px) rotate(-360deg); }
}

@keyframes energy-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

.skills-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.skill-pill {
    position: absolute;
    padding: 12px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: white;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: float 8s ease-in-out infinite;
}

.skill-pill.large {
    font-size: 16px;
    padding: 16px 24px;
    transform: scale(1.1);
}

.skill-pill.medium {
    font-size: 15px;
    padding: 14px 22px;
}

.skill-pill:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.skill-pill:nth-child(2) { top: 10%; right: 12%; animation-delay: 1s; }
.skill-pill:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 2s; }
.skill-pill:nth-child(4) { bottom: 15%; right: 8%; animation-delay: 3s; }
.skill-pill:nth-child(5) { top: 35%; left: 3%; animation-delay: 4s; }
.skill-pill:nth-child(6) { top: 30%; right: 3%; animation-delay: 5s; }
.skill-pill:nth-child(7) { bottom: 35%; left: 12%; animation-delay: 6s; }
.skill-pill:nth-child(8) { bottom: 30%; right: 15%; animation-delay: 7s; }

.skill-pill:nth-child(1), .skill-pill:nth-child(5) { transform: scale(0.9); }
.skill-pill:nth-child(2), .skill-pill:nth-child(6) { transform: scale(1.05); }
.skill-pill:nth-child(3), .skill-pill:nth-child(7) { transform: scale(0.95); }
.skill-pill:nth-child(4), .skill-pill:nth-child(8) { transform: scale(1.1); }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(1deg); }
    50% { transform: translateY(0px) rotate(0deg); }
    75% { transform: translateY(15px) rotate(-1deg); }
}

.skill-pill:hover {
    transform: scale(1.15) rotate(2deg);
    background: rgba(138, 60, 255, 0.2);
    border-color: rgba(138, 60, 255, 0.5);
    box-shadow:
        0 15px 50px rgba(138, 60, 255, 0.4),
        0 0 60px rgba(255, 71, 218, 0.3);
}

.pill-glow {
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    background: linear-gradient(45deg, rgba(138, 60, 255, 0.5), rgba(255, 71, 218, 0.4), rgba(66, 232, 255, 0.3));
    opacity: 0;
    animation: glow-pulse 3s ease-in-out infinite;
    z-index: -1;
    filter: blur(8px);
}

.skill-pill:hover .pill-glow {
    opacity: 1;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.skills-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.background-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: bg-float 10s linear infinite;
}

.bg-particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.bg-particle:nth-child(2) { top: 40%; right: 30%; animation-delay: 2s; }
.bg-particle:nth-child(3) { bottom: 30%; left: 40%; animation-delay: 4s; }
.bg-particle:nth-child(4) { top: 60%; right: 10%; animation-delay: 6s; }
.bg-particle:nth-child(5) { bottom: 50%; left: 60%; animation-delay: 8s; }

@keyframes bg-float {
    0% { transform: translateY(0px) translateX(0px); opacity: 0.1; }
    50% { transform: translateY(-20px) translateX(10px); opacity: 0.3; }
    100% { transform: translateY(0px) translateX(0px); opacity: 0.1; }
}

.contact {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(18, 6, 38, 0.5) 0%, rgba(10, 3, 18, 0.8) 100%);
}

.contact-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 150%;
    background: radial-gradient(circle, rgba(6, 2, 41, 0.25) 0%, rgba(0, 0, 0, 0.1) 30%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
    animation: contact-glow-pulse 6s ease-in-out infinite;
}

.contact-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(51, 1, 44, 0.15) 0%, transparent 50%);
    filter: blur(80px);
}

@keyframes contact-glow-pulse {
    0%, 100% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    animation: contact-header-fade-up 1s ease-out 0.2s both;
}

@keyframes contact-header-fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-header .section-title {
    line-height: 1.2;
    margin-bottom: 24px;
    font-size: clamp(36px, 7vw, 64px);
}

.contact-header .section-title br {
    content: '';
}

.contact-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 550px;
    margin: 32px auto 0;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: contact-subtitle-fade 1s ease-out 0.4s both;
}

@keyframes contact-subtitle-fade {

@keyframes contact-subtitle-fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.contact-subtitle:hover {
    color: var(--text);
    transition: color 0.3s ease;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 60, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(138, 60, 255, 0.1), inset 0 0 40px rgba(66, 232, 255, 0.05);
    animation: form-slide-up 1s ease-out 0.3s both;
}\n\n@keyframes form-slide-up {\n    from {\n        opacity: 0;\n        transform: translateY(40px);\n    }\n    to {\n        opacity: 1;\n        transform: translateY(0);\n    }\n}

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

.form-row .form-group {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: 16px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(138, 60, 255, 0.2);
}

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

.contact-footer {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 14px;
}

.portfolio-credit {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
}

.social-link svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, 0.6);
    transition: stroke var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 20px -5px var(--primary);
}

.social-link:hover svg {
    stroke: white;
}

.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    padding: 16px 24px;
    background: var(--bg-dark);
    border: 1px solid var(--primary);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(138, 60, 255, 0.3);
    z-index: 300;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all var(--transition-medium);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.toast p {
    font-size: 14px;
    color: white;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.timeline {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 50px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary);
    background: var(--bg-dark);
    border-radius: 50%;
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.timeline-title {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 6px;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        order: -1;
    }

    .about-avatar {
        max-width: 300px;
    }

    .modal-body {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
.carousel-indicators {
    display: none !important;
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .floating-symbol {
        transform: translate(-50%, -50%) rotate(45deg) scale(0.8);
        opacity: 0.9;
    }

    .hero-frame {
        aspect-ratio: 16/9;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .mobile-menu {
        display: flex;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .experience-item {
        flex-direction: column;
    }

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

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

    .contact-form-wrapper {
        padding: 32px;
    }

    .contact-footer {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .modal {
        width: 95%;
        max-height: 85vh;
        margin: 0 auto;
    }

    .modal-header {
        height: 200px;
    }

    .modal-body {
        padding: 24px;
        gap: 32px;
    }

    .modal-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}
.hero-carousel {
    position: relative;
    margin: 80px auto 120px;
    max-width: 1200px;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.carousel-track-container {
    overflow: hidden;
    padding: 0 60px;
}

