* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: #000000;
}

:root {
    /* 2025 Color Palette - Bold & Vibrant */
    --primary-red: #FF0054;
    --primary-red-dark: #D60045;
    --primary-red-light: #FF3377;

    --accent-cyan: #00F5FF;
    --accent-cyan-dark: #00C8D4;
    --accent-purple: #9D4EDD;
    --accent-orange: #FF6B35;
    --accent-yellow: #FFD60A;

    /* Neutral Colors - Deep & Rich */
    --black: #000000;
    --gray-900: #0F0F0F;
    --gray-800: #1A1A1A;
    --gray-700: #2A2A2A;
    --gray-600: #3A3A3A;
    --gray-500: #5A5A5A;
    --gray-400: #7A7A7A;
    --gray-300: #A0A0A0;
    --gray-200: #D0D0D0;
    --gray-100: #F0F0F0;
    --white: #FFFFFF;

    /* Gradients - 2025 Style */
    --gradient-primary: linear-gradient(135deg, #FF0054 0%, #D60045 50%, #9D4EDD 100%);
    --gradient-secondary: linear-gradient(135deg, #00F5FF 0%, #00C8D4 50%, #9D4EDD 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #FFD60A 100%);
    --gradient-mesh:
        radial-gradient(at 0% 0%, rgba(255, 0, 84, 0.15) 0px, transparent 50%),
        radial-gradient(at 50% 0%, rgba(0, 245, 255, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(157, 78, 221, 0.15) 0px, transparent 50%);

    /* Glass Effects */
    --glass-bg: rgba(26, 26, 26, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Sora', 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Animations */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-sequence {
    --bg-duration: 1.5s;
    --logo-delay: 1.5s;
    --logo-duration: 2s;
    --motto-delay: 3.5s;
    --motto-duration: 1.5s;
    --nav-delay: 4.5s;
    --nav-duration: 0.8s;
}

/* .header {
    BURASI EKSİK!!!
} */

.navigation-bar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: all var(--transition-base);
    transform: translateY(-100%);
    opacity: 0;
}

.navigation-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.8;
}

.navigation-bar.loaded {
    animation: slideInNav var(--nav-duration) ease-out var(--nav-delay) forwards;
    transform: translateY(0);
    opacity: 1;
}

.language-body {
    position: relative;
    cursor: pointer;
    margin-right: 16px;
}

.language-body:hover .language-menu,
.language-body.open .language-menu {
    display: block;
}

.language-button {
    display: inline-block;
    filter: grayscale(1) contrast(100%);
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.25s ease;
    color: var(--white);
    font-weight: 600;
}

.language-button:hover {
    background: rgba(255, 0, 84, 0.2);
    transform: scale(1.05);
    backdrop-filter: blur(10px);
    color: var(--primary-red);
}

.language-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(11, 11, 12, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    min-width: 140px;
    border: 1px solid rgba(179, 18, 47, 0.3);
    box-shadow: 0 8px 32px rgba(179, 18, 47, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 4000;
    border-radius: 12px;
    overflow: hidden;
}

.language-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--soft-white);
    text-decoration: none;
    white-space: nowrap;
    font-family: Calibri, sans-serif;
    font-weight: 500;
    transition: all 0.25s ease;
}

.language-menu a:hover {
    background: linear-gradient(90deg, rgba(230, 57, 70, 0.2), rgba(255, 138, 91, 0.2));
    color: var(--secondary-orange);
    padding-left: 20px;
    text-shadow: 0 0 10px rgba(255, 138, 91, 0.5);
}

.logo-body {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
}

.logo-top {
    cursor: pointer;
    justify-content: center;
    align-items: center;
    justify-self: center;
    height: 48px;
    max-width: 100%;
    transition: all 0.25s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-top:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.navigation-body {
    position: relative;
    cursor: pointer;
    margin-right: 16px;
}

.navigation-button {
    display: inline-block;
    width: 40px;
    height: 32px;
    position: relative;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.25s ease;
}

.navigation-button:hover {
    background: rgba(255, 0, 84, 0.2);
    backdrop-filter: blur(10px);
}

.navigation-button:hover span {
    background: var(--primary-red);
    box-shadow: 0 0 15px rgba(255, 0, 84, 0.6);
}

.navigation-button span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: absolute;
    left: 8px;
    transition: all 0.25s ease;
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.navigation-button span:nth-child(1) {
    top: 8px;
}

.navigation-button span:nth-child(2) {
    top: 15px;
}

.navigation-button span:nth-child(3) {
    top: 22px;
}

.navigation-body.active .navigation-button span:nth-child(1) {
    transform: translateY(7px) rotate(-45deg);
}

.navigation-body.active .navigation-button span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navigation-body.active .navigation-button span:nth-child(3) {
    transform: translateY(-7px) rotate(45deg);
}

.navigation-menu {
    margin-top: 0;
    top: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: fixed;
    right: calc(-1 * 320px);
    width: 80%;
    max-width: 320px;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: right 0.3s ease;
    z-index: 999;
    border-left: 2px solid rgba(255, 0, 84, 0.3);
    box-shadow: -8px 0 32px rgba(255, 0, 84, 0.15),
        inset 1px 0 0 rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.navigation-separator {
    display: block;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    height: 1px;
    width: 80%;
    margin: 8px auto;
}

.navigation-item {
    color: var(--white);
    display: block;
    font-size: 20px;
    font-family: var(--font-primary);
    font-weight: 500;
    border-right: 3px solid transparent;
    padding: 16px 24px;
    margin: 4px 0;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.navigation-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.3), rgba(255, 138, 91, 0.2));
    transition: width 0.3s ease;
    z-index: 5;
}

.navigation-item:hover {
    color: var(--accent-orange);
    border-right-color: var(--primary-red);
    padding-right: 28px;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
}

.navigation-item:hover::before {
    width: 100%;
}

body {
    font-family: var(--font-primary);
    background: var(--black);
    color: var(--white);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    z-index: 1;
}

.background-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, 100px) scale(1.1);
    }

    50% {
        transform: translate(-50px, 50px) scale(0.9);
    }

    75% {
        transform: translate(100px, -50px) scale(1.05);
    }
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
    top: 30%;
    right: -200px;
    animation-delay: -7s;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -14s;
}

.mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    opacity: 1;
}

.home {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.body-home {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    padding: 0 2rem;
    padding-top: 80px;
}

.body-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: 0;
    filter: blur(0px) brightness(0.3);
    opacity: 0;
    animation: revealBackground var(--bg-duration) ease-out forwards;
}

.home-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    animation:
        logoFadeIn var(--logo-duration) ease-in-out var(--logo-delay) forwards,
        logoFadeOut 0.8s ease-in-out calc(var(--logo-delay) + var(--logo-duration)) forwards;
}

.home-logo img {
    height: 120px;
    max-width: 90vw;
    object-fit: contain;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: contentAppear 1s ease-out 3s forwards;
}

@keyframes contentAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: 0.2em;
}

.title-line {
    display: block;
    animation: slideUp 0.8s ease-out backwards;
}

.title-line:nth-child(1) {
    animation-delay: 3.1s;
}

.title-line:nth-child(2) {
    animation-delay: 3.3s;
}

.title-line:nth-child(3) {
    animation-delay: 3.5s;
}

.title-line.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--gray-300);
    font-weight: 400;
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    animation: fadeIn 0.8s ease-out 3.7s backwards;
}

.home-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-2xl);
    animation: fadeIn 0.8s ease-out 4s backwards;
}

.action-button {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.action-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.action-button:hover::before {
    width: 300px;
    height: 300px;
}

.action-button span {
    position: relative;
    z-index: 1;
}

.action-button svg {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.action-button.primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 0, 84, 0.4);
}

.action-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 84, 0.6);
}

.action-button:hover svg.arrow-button {
    transform: translateX(4px);
}

.action-button.secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.action-button.secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-red);
    box-shadow: 0 8px 30px rgba(255, 0, 84, 0.3);
}

.packages {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3xl) var(--spacing-lg);
    position: relative;
    background: var(--black);
}

.body-packages {
    max-width: 1400px;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-red);
    margin-bottom: var(--spacing-sm);
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 84, 0.1);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 0, 84, 0.2);
}

.packages-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.packages-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.packages-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-3xl);
}

.package-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 75vh;
    min-height: 75vh;
}

.package-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transition: all var(--transition-base);
}

.package-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 0, 84, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.package-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 60px rgba(255, 0, 84, 0.3);
}

.package-item:hover::after {
    opacity: 1;
}

.package-item.featured {
    border: 2px solid var(--primary-red);
    background: linear-gradient(135deg, rgba(255, 0, 84, 0.1), rgba(157, 78, 221, 0.05));
    transform: scale(1.05);
}

.package-item.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.package-item.basic .package-badge {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.4), transparent);
}

.package-item.standard .package-badge {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.4), transparent);
}

.package-item.premium .package-badge {
    background: linear-gradient(135deg, rgba(255, 109, 64, 0.4), transparent);
}

.package-item.deluxe .package-badge {
    background: linear-gradient(135deg, rgba(255, 214, 10, 0.4), transparent);
}

.package-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
}

.package-badge.popular {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 0, 84, 0.4);
}

.package-header {
    text-align: left;
    margin-bottom: var(--spacing-lg);
}

.package-label {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.package-price-box {
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
    margin-bottom: var(--spacing-xs);
}

.package-price {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.package-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-300);
    margin-top: 0.5rem;
}

.package-duration {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-features {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.9375rem;
    color: var(--gray-200);
    transition: all var(--transition-fast);
}

.feature svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-cyan);
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.feature:hover {
    color: var(--white);
    transform: translateX(4px);
}

.feature:hover svg {
    stroke: var(--primary-red);
    transform: scale(1.1);
}

.subscription-period {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0.5rem 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.tabs-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
}

.subscription-label {
    display: block;
    text-align: center;
    color: var(--gray-300);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 4px;
    font-family: var(--font-primary);
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--gray-300);
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition-base);
    white-space: nowrap;
    font-family: var(--font-primary);
    font-size: 1rem;
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: transparent;
    transition: background-color var(--transition-base);
}

.tab-btn:hover {
    color: var(--white);
}

.tab-btn:hover::after {
    background-color: var(--primary-red);
}

.tab-btn.active {
    color: var(--primary-red);
}

.tab-btn.active::after {
    background-color: var(--primary-red);
}

.feature-notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    color: var(--gray-200);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: bottom 0.4s ease;
    z-index: 1000;
    text-align: center;
}

.feature-notification.show {
    bottom: 20px;
}

.package-separator {
    width: 100%;
    height: 1px;
    background-color: var(--glass-border);
    margin: 8px 0;
}

/* Package-specific colors */
.package-item.basic::before {
    background: var(--gradient-secondary);
}

.package-item.standard::before {
    background: var(--gradient-primary);
}

.package-item.premium::before {
    background: var(--gradient-accent);
}

.package-item.deluxe::before {
    background: linear-gradient(135deg, var(--accent-purple), var(--primary-red));
}

.package-button {
    width: 100%;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 0, 84, 0.3);
}

.package-button span {
    position: relative;
    z-index: 1;
}

.package-button svg {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.package-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.package-button:hover::before {
    width: 300px;
    height: 300px;
}

.package-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 84, 0.5);
}

.package-button:hover svg {
    transform: translateX(4px);
}

.footer {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    background-image:
        linear-gradient(var(--rich-black), rgba(28, 28, 30, 0.95)),
        url('../media/construction_footer.jpg');
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 2px solid var(--primary-ruby);
}

.footer-title {
    display: none;
}

.body-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
}

.logo-footer {
    margin-top: 15vh;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: appear both;
    animation-timeline: view();
}

.logo-bottom {
    height: 124px;
    align-items: center;
}

.information {
    margin-top: 5vh;
    gap: 1vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: blur linear both;
    animation-timeline: view(50% auto);
}

.phone {
    text-align: center;
    text-decoration: none;
    color: white;
    font-family: Consolas;
}

.phone:hover {
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 2px;
}

.mail {
    text-align: center;
    font-family: Consolas;
    text-decoration: none;
    color: white;
}

.mail:hover {
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 2px;
}

.social {
    text-align: center;
    display: flex;
    flex-direction: row;
}

.social-media {
    margin: 32px;
    text-decoration: none;
    color: white;
    font-family: Rockwell, serif;
}

.social-media:hover {
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 2px;
}

.developer {
    margin-top: 25vh;
    font-family: "tomarik-poster", sans-serif;
    color: white;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.separator-developer {
    background: white;
    height: 1px;
    width: 75vw;
    opacity: 0.25;
}

.erimbeklevic {
    text-align: center;
    font-family: "tomarik-serif", serif;
    font-style: italic;
    text-decoration: none;
    color: white;
    position: relative;
}

.erimbeklevic::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 8px;
    bottom: -4px;
    background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='8' viewBox='0 0 40 8'%3E%3Cpath d='M0 4 Q5 0 10 4 T20 4 T30 4 T40 4' fill='none' stroke='%23aaaaaa' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x;
    background-size: 16px 8px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.erimbeklevic:hover {
    color: grey;
}

.erimbeklevic:hover::after {
    transform: scaleX(1);
    animation: erimbeklevic-wave 1s linear infinite;
}

@keyframes erimbeklevic-wave {
    to {
        background-position-x: -16px;
    }
}

.copyright {
    text-align: center;
    font-size: 8px;
    color: gray;
    font-family: Lucida Sans;
}

@keyframes slide {
    from {
        left: max(calc(var(--item-width) * var(--item)), 100%);
    }

    to {
        left: calc(-1 * var(--item-width));
    }
}

@keyframes reveal {
    from {
        filter: blur(8px);
        opacity: 0;
        scale: 0.75;
    }

    to {
        filter: none;
        opacity: 1;
        scale: 1;
    }
}

@keyframes translateX {
    from {
        opacity: 0;
        transform: translateX(-25vw);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes appear {
    from {
        opacity: 0;
        transform: translateY(-5vw) scale(0.25);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes blur {
    0% {
        filter: blur(16px);
    }

    25% {
        filter: blur(8px);
    }

    50% {
        filter: blur(4px);
    }

    55% {
        filter: blur(0px);
    }
}

/* Disable animations if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .navigation-bar,
    .body-image,
    .home-logo {
        animation: none !important;
    }

    .navigation-bar.loaded {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes revealBackground {
    to {
        opacity: 1;
        filter: blur(0px) brightness(0.3);
    }
}

@keyframes logoFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes logoFadeOut {
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInNav {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes revealBackground {
    0% {
        opacity: 0;
        filter: blur(20px);
        transform: scale(1.1);
    }

    100% {
        opacity: 0.5;
        filter: blur(8px);
        transform: scale(1);
    }
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes logoFadeOut {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

@keyframes mottoAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes socialAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
