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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #000;
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: #fff;
}

.loading-progress {
    width: 98%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin-bottom: 30px;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #fff700, #ffd700, #ffed4e, #fff700, #ffd700);
    border-radius: 1px;
    width: 0%;
    transition: width 0.1s ease;
}

.loading-text {
    font-size: 54px;
    font-weight: 500;
    margin-bottom: 20px;
}

.loading-text .blur-letter {
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.loading-percentage {
    font-size: 24px;
    opacity: 0.7;
    font-weight: 600;
}

/* Main Content */
.main-content {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.main-content.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2), 
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-logo a {
    color: #ffd700;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 12px;
}

.nav-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    transform: translateY(-1px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 2px;
    background: #ffd700;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 1px;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.welcome-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 40px 0;
    text-align: center;
}

.gradient-text-container {
    position: relative;
    margin: 0 auto;
    display: flex;
    max-width: fit-content;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 1.25rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: box-shadow 0.5s ease-out;
    overflow: hidden;
    cursor: pointer;
}

.gradient-text {
    display: inline-block;
    position: relative;
    z-index: 2;
    background-image: linear-gradient(to right, #ffd700, #ffffff, #ffd700, #ffffff, #ffd700, #ffffff, #ffd700);
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientFlow 3s linear infinite;
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    user-select: none;
    white-space: nowrap;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.blur-letter {
    display: inline-block;
    filter: blur(10px);
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blur-letter.animate {
    filter: blur(0px);
    opacity: 1;
    transform: translateY(0);
}

.blur-letter.animate-step-1 {
    filter: blur(5px);
    opacity: 0.5;
    transform: translateY(5px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}


.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 40px;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto;
}

.hero-description p {
    font-size: 18px;
    line-height: 1.6;
    color: #999;
}

/* Scroll Arrow */
.scroll-arrow {
    position: relative;
    margin: 30px auto 0;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.rotating-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 3s linear infinite;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.rotating-ring::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #ffd700, #c0c0c0, #ffd700);
    z-index: -1;
}

.rotating-ring::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: #000;
    z-index: 0;
}

.rotating-ring:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

.rotating-ring:hover::before {
    filter: blur(12px);
    opacity: 1;
}

.arrow-down {
    font-size: 28px;
    color: #ffd700 !important;
    font-weight: bold;
    animation: bounce 2s infinite, counter-rotate 3s linear infinite;
    position: relative;
    z-index: 10;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* 3D Floating Elements */
.hero-3d-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: -25%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: -25%;
    animation-delay: 2s;
}

.element-3 {
    width: 70px;
    height: 70px;
    top: 40%;
    left: 120%;
    animation-delay: 4s;
}

.element-4 {
    width: 50px;
    height: 50px;
    top: 80%;
    left: -20%;
    animation-delay: 1s;
}

.element-5 {
    width: 90px;
    height: 90px;
    top: 10%;
    right: -20%;
    animation-delay: 3s;
}

.element-content {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

/* How Section */
.how-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.how-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.how-text {
    text-align: left;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

.how-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* Abstract UI Elements */
.how-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-ui {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smile-image {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    border-radius: 20px;
    animation: float 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.smile-image:hover {
    transform: scale(1.1) translateY(-10px);
}

/* Services Section */
.services-section {
    padding: 20px 0 40px;
    background: #000;
}

.section-subtitle {
    font-size: 18px;
    color: #999;
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
}

.service-button {
    background: #ffd700;
    color: #000;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

.service-button:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* Business Card Section */
.business-card-section {
    padding: 80px 0;
    background: #000;
}

.business-card {
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2), 
                0 0 0 1px rgba(255, 255, 255, 0.1) inset,
                0 0 50px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.business-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.05) 50%, transparent 100%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(20px);
}

.card-header {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.website-url {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.website-link {
    color: #fff;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.website-link:hover {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    transform: scale(1.05);
}

/* Zlaté kapky přímo v textu */
.gold-drop {
    display: inline-block;
    animation: goldSparkle 2s ease-in-out infinite;
    margin: 0 5px;
}

.gold-drop:nth-child(1) {
    animation-delay: 0s;
}

.gold-drop:nth-child(3) {
    animation-delay: 1s;
}

@keyframes goldSparkle {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1) rotate(0deg);
    }
    25% {
        opacity: 1;
        transform: scale(1.2) rotate(90deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(0.9) rotate(180deg);
    }
    75% {
        opacity: 1;
        transform: scale(1.1) rotate(270deg);
    }
}

.card-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.card-left {
    text-align: center;
}

.logo-circle {
    width: 80px;
    height: 80px;
    border: 4px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.logo-circle::before {
    content: '';
    position: absolute;
    left: -2px;
    top: -2px;
    width: 40px;
    height: 40px;
    border: 4px solid #ff4444;
    border-radius: 50%;
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.logo-v {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.company-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.company-website {
    font-size: 16px;
    margin-bottom: 10px;
}

.company-link {
    color: #fff;
    text-decoration: none;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.company-link:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.company-description {
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
    margin-bottom: 20px;
}

.card-button-small {
    margin-top: 15px;
}

.card-button-small .card-button {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 20px;
}

.card-middle {
    padding-left: 20px;
}

.contact-person {
    font-size: 24px;
    margin-bottom: 10px;
}

.name-part {
    color: #fff;
}

.name-part.highlight {
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.office-title {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
}

.contact-details {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-icon {
    margin-right: 10px;
    font-size: 18px;
    color: #ffd700;
}

.contact-text {
    color: #fff;
}

.company-entity {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.address {
    font-size: 14px;
    color: #ccc;
}

.address-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.address-text {
    margin-bottom: 10px;
    line-height: 1.4;
}

.card-right {
    padding-left: 20px;
}

.services-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
}

.services-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 12px;
}

.card-button {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.card-button:hover::before {
    left: 100%;
}

.card-button:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
    text-align: center;
}

.contact-info {
    margin: 0;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    padding: 12px 15px;
    margin: 0 -15px;
}

.contact-label {
    font-weight: 600;
    color: #fff;
    font-size: 16px;
}

.contact-value {
    color: #ccc;
    font-size: 16px;
    text-align: right;
}

.contact-link {
    color: #ffd700 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link:hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #fff);
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

.contact-text {
    text-align: left;
}

.contact-text.contact-link {
    color: #ffd700 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-text.contact-link:hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}

.contact-text.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #fff);
    transition: width 0.3s ease;
}

.contact-text.contact-link:hover::after {
    width: 100%;
}

.contact-text .section-title {
    text-align: left;
}

.contact-text .section-subtitle {
    text-align: left;
    margin-bottom: 40px;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
    font-size: 18px;
}

.contact-icon {
    font-size: 20px;
    margin-right: 15px;
    color: #ffd700;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ffd700;
    text-decoration: underline;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.logo-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.logo-item:hover::before {
    left: 100%;
}

.logo-item:hover {
    border-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.logo-1 { background: linear-gradient(135deg, #1a1a1a, #2d2d2d); }
.logo-2 { background: linear-gradient(135deg, #1a1a1a, #2d2d2d); }
.logo-3 { background: linear-gradient(135deg, #1a1a1a, #2d2d2d); }
.logo-4 { background: linear-gradient(135deg, #1a1a1a, #2d2d2d); }
.logo-5 { background: linear-gradient(135deg, #1a1a1a, #2d2d2d); }
.logo-6 { background: linear-gradient(135deg, #1a1a1a, #2d2d2d); }

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.logo-icon {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.email-address {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.footer-description p {
    color: #999;
    font-size: 16px;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .how-content-wrapper {
        gap: 60px;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .card-middle {
        padding-left: 0;
    }
    
    .card-right {
        padding-left: 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .client-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(255, 215, 0, 0.15);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        width: calc(100% - 40px);
        border-radius: 25px;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2), 
                    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
        padding: 40px 0;
        border: 1px solid rgba(255, 215, 0, 0.3);
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        left: 20px;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .gradient-text {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .how-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .business-card {
        padding: 30px;
    }
    
    .website-url {
        font-size: 28px;
    }
    
    .card-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .contact-cards-grid {
        gap: 15px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-card h3 {
        font-size: 20px;
    }
    
    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 215, 0, 0.3);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 15px 0;
        display: block;
        width: 100%;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Business Card Mobile */
    .business-card {
        margin: 20px;
        padding: 20px;
    }
    
    .website-url {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .card-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .logo-circle {
        width: 50px;
        height: 50px;
    }
    
    .logo-v {
        font-size: 24px;
    }
    
    .company-name {
        font-size: 18px;
    }
    
    .contact-item {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .contact-icon {
        font-size: 16px;
    }
    
    .services-list {
        font-size: 14px;
    }
    
    .services-list li {
        padding: 8px 0;
    }
    
    .client-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-logo {
        width: 50px;
        height: 50px;
    }
    
    .logo-icon {
        font-size: 20px;
    }
    
    .email-address {
        font-size: 20px;
    }
    
    .footer-description p {
        font-size: 14px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .contact-card:hover,
    .contact-item:hover {
        transform: none;
    }
    
    .service-card:active,
    .contact-card:active {
        transform: scale(0.98);
    }
    
    .nav-link:hover {
        color: #ffd700;
    }
    
    .contact-link:hover {
        color: #ffd700 !important;
        text-shadow: none;
        transform: none;
    }
    
    .card-button:hover {
        transform: none;
    }
    
    .card-button:active {
        transform: scale(0.95);
    }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 500px) {
    .hero-section {
        padding: 80px 0 40px;
    }
    
    .gradient-text {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .services-section {
        padding: 40px 0;
    }
    
    .business-card-section {
        padding: 40px 0;
    }
    
    .business-card {
        padding: 20px;
    }
    
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .gradient-text {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid {
        gap: 15px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        font-size: 35px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    .service-button {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .business-card {
        margin: 15px;
        padding: 15px;
    }
    
    .website-url {
        font-size: 18px;
    }
    
    .card-button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .logo-circle {
        width: 45px;
        height: 45px;
    }
    
    .logo-v {
        font-size: 22px;
    }
    
    .company-name {
        font-size: 16px;
    }
    
    .contact-item {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .contact-icon {
        font-size: 14px;
    }
    
    .services-list {
        font-size: 13px;
    }
    
    .contact-cards-grid {
        gap: 10px;
    }
    
    .contact-card {
        padding: 15px;
    }
    
    .contact-card h3 {
        font-size: 18px;
    }
    
    .contact-label,
    .contact-value {
        font-size: 14px;
    }
    
    /* Pricing Menu Mobile */
    .pricing-menu {
        padding: 20px;
        margin: 0 15px;
    }
    
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0;
    }
    
    .item-info {
        min-width: auto;
        margin-bottom: 10px;
    }
    
    .item-price {
        font-size: 20px !important;
        text-align: center !important;
        margin-left: 0 !important;
        align-self: center !important;
        width: 100% !important;
    }
    
    /* Loading Screen Mobile */
    .loading-content {
        padding: 20px;
    }
    
    .loading-text {
        font-size: 18px;
    }
    
    .loading-percentage {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Scroll Arrow Mobile */
    .scroll-arrow {
        margin: 20px auto 0;
    }
    
    .scroll-arrow i {
        font-size: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .business-card {
        padding: 20px;
    }
    
    .website-url {
        font-size: 24px;
    }
    
    .card-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .logo-circle {
        width: 60px;
        height: 60px;
    }
    
    .logo-v {
        font-size: 28px;
    }
    
    .company-name {
        font-size: 20px;
    }
    
    .contact-item {
        font-size: 16px;
    }
    
    .contact-icon {
        font-size: 18px;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .gradient-text {
        font-size: 42px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 700px;
    }
    
    .business-card {
        padding: 30px;
    }
    
    .card-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .card-middle {
        padding-left: 0;
    }
    
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Pricing Menu Tablet */
    .pricing-menu {
        padding: 30px;
    }
    
    .menu-item {
        padding: 18px 0;
    }
    
    .item-price {
        font-size: 22px;
        text-align: center;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .gradient-text {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .business-card {
        padding: 25px;
    }
    
    .card-content {
        gap: 25px;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    /* Pricing Menu Mobile Landscape */
    .pricing-menu {
        padding: 25px;
    }
    
    .menu-item {
        padding: 16px 0;
    }
    
    .item-price {
        font-size: 21px;
        text-align: center;
    }
}

/* Mobile Portrait */
@media (max-width: 640px) {
    .gradient-text {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid {
        gap: 15px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .contact-item {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .navbar {
        top: 15px;
        left: 15px;
        right: 15px;
        width: calc(100% - 30px);
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .gradient-text {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .service-card p {
        font-size: 14px;
    }
    
    .client-logos {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .logo-item {
        padding: 15px;
        font-size: 14px;
    }
    
    .contact-item {
        font-size: 16px;
        margin: 12px 0;
    }
    
    .contact-icon {
        font-size: 16px;
        margin-right: 12px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .footer-email {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-description {
        font-size: 14px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .gradient-text {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .contact-item {
        font-size: 14px;
    }
}

/* Mobile Animations Optimization */
@media (max-width: 768px) {
    .animated-bg .bg-element {
        width: 200px;
        height: 200px;
        filter: blur(40px);
    }
    
    .animated-bg .element-1 {
        top: 10%;
        left: 5%;
    }
    
    .animated-bg .element-2 {
        top: 20%;
        right: 10%;
    }
    
    .animated-bg .element-3 {
        top: 60%;
        left: 15%;
    }
    
    .animated-bg .element-4 {
        top: 70%;
        right: 5%;
    }
    
    .animated-bg .element-5 {
        top: 40%;
        left: 50%;
    }
    
    .animated-bg .element-6 {
        top: 80%;
        left: 30%;
    }
    
    .animated-bg .element-7 {
        top: 30%;
        right: 30%;
    }
    
    .animated-bg .element-8 {
        top: 90%;
        right: 20%;
    }
}

/* Hide scrollbar during loading */
body.loading {
    overflow: hidden;
}

/* Animated Background Styles */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-element {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.03) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(80px);
    animation: floatAround 25s linear infinite;
}

.element-1 {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 30s;
    width: 500px;
    height: 500px;
}

.element-2 {
    top: 50%;
    right: 5%;
    animation-delay: 5s;
    animation-duration: 35s;
    width: 450px;
    height: 450px;
}

.element-3 {
    top: 30%;
    left: 60%;
    animation-delay: 10s;
    animation-duration: 40s;
    width: 350px;
    height: 350px;
}

.element-4 {
    top: 80%;
    left: 10%;
    animation-delay: 15s;
    animation-duration: 32s;
    width: 400px;
    height: 400px;
}

.element-5 {
    top: 15%;
    right: 20%;
    animation-delay: 8s;
    animation-duration: 38s;
    width: 300px;
    height: 300px;
}

.element-6 {
    top: 70%;
    left: 0%;
    animation-delay: 12s;
    animation-duration: 28s;
    width: 600px;
    height: 600px;
}

.element-7 {
    top: 25%;
    right: 0%;
    animation-delay: 18s;
    animation-duration: 42s;
    width: 400px;
    height: 400px;
}

.element-8 {
    top: 60%;
    left: 40%;
    animation-delay: 3s;
    animation-duration: 33s;
    width: 250px;
    height: 250px;
}

@keyframes floatAround {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-50px) scale(1.05);
        opacity: 0.15;
    }
    50% {
        transform: translateY(0) scale(1);
        opacity: 0.1;
    }
    75% {
        transform: translateY(50px) scale(1.05);
        opacity: 0.15;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.1;
    }
}

/* Pricing Menu Styles */
.pricing-menu {
    max-width: 800px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.menu-category {
    margin-bottom: 40px;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffd700;
    text-align: center;
}

.menu-items {
    background: #0f0f0f;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #333;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
    flex-wrap: wrap;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    padding: 20px 15px;
    margin: 0 -15px;
}

.item-info {
    flex: 1;
    min-width: 200px;
}

.item-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.item-info p {
    font-size: 14px;
    color: #ccc;
    margin: 0;
}

.item-price {
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    flex-shrink: 0;
    margin-left: 20px;
}