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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Header Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 69, 0, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(45deg, #ff4500, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: #888888;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #888888;
    transition: all 0.3s ease;
}

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

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

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff4500, #ff8c00);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: #ffffff;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff4500, #ff8c00);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding-top: 80px;
}

.hero::before {
    /* Temporarily removed background image */
    /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 0; */
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 69, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(255, 140, 0, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 165, 0, 0.08) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff4500, #ff8c00, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeIn 1.2s ease-out forwards;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #cccccc;
    animation: slideUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-cta-text {
    font-size: 1.1rem;
    color: #ff8c00;
    margin-bottom: 2rem;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(45deg, #ff4500, #ff8c00, #ffa500);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transform: translateY(0);
    transition: all 0.3s ease;
    animation: slideUp 1s ease-out 0.4s both;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
    border: 2px solid rgba(255, 140, 0, 0.3);
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #ff8c00, #ffa500, #ff4500);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.6);
    border-color: rgba(255, 140, 0, 0.5);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

.cta-button:hover::before {
    opacity: 1;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Agencies Section */
.agencies {
    padding: 60px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.agencies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff4500, #ff8c00, #ff4500, transparent);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

.agencies::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

.agencies h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff4500, #ff8c00, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

/* About Slideshow */
.about-slideshow {
    max-width: 900px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.slide-wrapper {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s ease, visibility 1s ease, transform 1s ease;
    text-align: center;
    padding: 2rem 1rem;
}

.slide-item.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
}

.slide-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ff4500;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.slide-item p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.agency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.agency-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    z-index: 2;
}

.agency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff4500, #ff8c00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.agency-card:hover::before {
    transform: scaleX(1);
}

.agency-card:hover {
    transform: translateY(-8px);
    background: #222222;
    border-color: #ff4500;
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.1);
}

.agency-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.agency-logo {
    color: #ff8c00;
}

.agency-logo svg,
.agency-logo svg *,
.agency-logo svg circle,
.agency-logo svg rect,
.agency-logo svg path,
.agency-logo svg text {
    fill: #ff8c00 !important;
    stroke: #ff8c00 !important;
    color: #ff8c00 !important;
}

.agency-card:hover .agency-logo {
    transform: scale(1.1);
    color: #ff4500;
}

.agency-card:hover .agency-logo svg,
.agency-card:hover .agency-logo svg *,
.agency-card:hover .agency-logo svg circle,
.agency-card:hover .agency-logo svg rect,
.agency-card:hover .agency-logo svg path,
.agency-card:hover .agency-logo svg text {
    fill: #ff4500 !important;
    stroke: #ff4500 !important;
    color: #ff4500 !important;
}

.agency-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff8c00;
    font-weight: 600;
}

.agency-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #0a0a0a;
}

.services h2,
.pricing h2,
.contact-form h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff4500, #ff8c00, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 3rem;
    font-weight: 500;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.form-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: #ff4500;
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.1);
}

.service-item h3 {
    color: #ff8c00;
    margin-bottom: 0.5rem;
}

.service-item h3 a,
.agency-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-item h3 a:hover,
.agency-card h3 a:hover {
    color: #ff4500;
}

.service-item p {
    color: #cccccc;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-item .cta-button {
    margin-top: 1rem;
    padding: 12px 24px;
    font-size: 0.95rem;
    display: inline-block;
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.service-icon {
    color: #ff8c00;
}

.service-icon svg,
.service-icon svg *,
.service-icon svg circle,
.service-icon svg rect,
.service-icon svg path,
.service-icon svg text {
    fill: #ff8c00 !important;
    stroke: #ff8c00 !important;
    color: #ff8c00 !important;
}

.service-item:hover .service-icon {
    color: #ff4500;
}

.service-item:hover .service-icon svg,
.service-item:hover .service-icon svg *,
.service-item:hover .service-icon svg circle,
.service-item:hover .service-icon svg rect,
.service-item:hover .service-icon svg path,
.service-item:hover .service-icon svg text {
    fill: #ff4500 !important;
    stroke: #ff4500 !important;
    color: #ff4500 !important;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #111111;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff4500, transparent);
}

.pricing h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
}

.range-slider-container {
    margin-bottom: 3rem;
    text-align: center;
}

.range-slider-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.range-slider {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 1rem;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: #333333;
    border-radius: 3px;
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ff4500, #ff8c00);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.5);
}

.range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ff4500, #ff8c00);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #ff4500;
    margin-bottom: 1rem;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid #ff4500;
    background: linear-gradient(135deg, #1a1a1a, #222222);
    transform: scale(1.05);
}

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

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

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #ff4500;
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.1);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ff8c00;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: #ff8c00;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-style: italic;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card .cta-button {
    margin-top: 1.5rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #333333;
    color: #cccccc;
}

.pricing-card li:last-child {
    border-bottom: none;
}

/* Individual Project Section */
.individual-project {
    padding: 100px 0;
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
    position: relative;
}

.individual-project::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff4500, transparent);
}

.individual-project h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff4500, #ff8c00, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    position: relative;
    padding: 1.5rem 0;
}

.project-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.3), transparent);
}

.project-intro p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.project-intro p:last-child {
    margin-bottom: 0;
}

.individual-project .range-slider-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 69, 0, 0.2);
    backdrop-filter: blur(10px);
}

.individual-project .range-slider-container h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ff8c00;
}

.range-description {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.range-note {
    font-size: 0.9rem;
    color: #888888;
    font-style: italic;
    margin-top: 1rem;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #888888;
    font-style: italic;
}

.form-group input[readonly] {
    background: rgba(255, 255, 255, 0.05);
    cursor: not-allowed;
    opacity: 0.8;
}

/* Contact Form */
.contact-form {
    padding: 100px 0;
    background: rgba(255,255,255,0.05);
}

.contact-form h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.form-message {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background: rgba(0, 184, 148, 0.2);
    border: 2px solid #00b894;
    color: #00b894;
}

.form-message.error {
    background: rgba(231, 76, 60, 0.2);
    border: 2px solid #e74c3c;
    color: #e74c3c;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff8c00' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 12px !important;
    padding-right: 40px;
    cursor: pointer;
}

/* Fix für doppelte Dropdown-Pfeile - entferne alle Browser-Standard-Pfeile */
.form-group select::-ms-expand {
    display: none !important;
}

.form-group select::-webkit-scrollbar {
    display: none;
}

.form-group select option {
    background: #1a1a1a !important;
    color: white !important;
    padding: 10px;
}

.form-group select option:checked {
    background: #ff4500 !important;
    color: white !important;
}

.form-group select option:hover {
    background: #222222 !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border: 2px solid #ff4500;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.submit-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(45deg, #ff4500, #ff8c00, #ffa500);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
    border: 2px solid rgba(255, 140, 0, 0.3);
    display: inline-block;
    text-align: center;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #ff8c00, #ffa500, #ff4500);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.6);
    border-color: rgba(255, 140, 0, 0.5);
}

.submit-btn:hover::before {
    opacity: 1;
}

/* FAQ Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff4500;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.1);
}

.faq-item h3 {
    color: #ff8c00;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.faq-item p {
    color: #cccccc;
    font-size: 1.15rem;
    line-height: 1.9;
    margin: 0;
}

.cta-buttons-container {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons-container .cta-button {
    margin-top: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255, 69, 0, 0.2);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 2rem 2rem;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .main-nav a {
        font-size: 1.2rem;
        display: block;
        padding: 0.5rem 0;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .agencies h2,
    .services h2,
    .pricing h2,
    .individual-project h2,
    .contact-form h2 {
        font-size: 2.5rem;
    }
    
    .about-slideshow {
        max-width: 100%;
        padding: 0 1rem;
        margin-bottom: 3rem;
    }
    
    .slide-wrapper {
        min-height: 350px;
    }
    
    .slide-item h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .slide-item p {
        font-size: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta-text {
        font-size: 1rem;
    }
    
    .services-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .form-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .agencies::after {
        width: 400px;
        height: 400px;
    }
    
    .agency-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional styles from JavaScript */
@keyframes glitch {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-2px); }
    40% { transform: translateX(2px); }
    60% { transform: translateX(-1px); }
    80% { transform: translateX(1px); }
}

.agency-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Footer Styles */
footer,
.footer {
    background: #0a0a0a;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 60px 0 30px;
    position: relative;
    border-top: 1px solid rgba(255, 69, 0, 0.2);
    overflow: hidden;
}

footer::before,
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 0;
}

footer video,
.footer video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-contact-wide {
    grid-column: span 1;
}

.footer-section h3 {
    color: #ff8c00;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h4 {
    color: #ff8c00;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff4500, #ff8c00);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: #ff8c00;
    transform: translateX(5px);
}

.footer-section a:hover::before {
    width: 100%;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff4500, #ff8c00);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ff8c00;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal p {
    color: #888888;
    margin: 0;
}

.footer-brand {
    color: #ff8c00;
    font-weight: 600;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-legal-links a:hover {
    color: #ff8c00;
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: #ff8c00;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 1rem;
    }
}
