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

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #000000;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

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

.nav-link {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000000;
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-phone {
    background: #000000;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 600;
}

.nav-phone::before {
    display: none;
}

.nav-phone:hover {
    background: #333333;
}

/* Service Switch Button */
.service-switch-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #6600ff 0%, #00ccff 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 20px;
}

.service-switch-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(102, 0, 255, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

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

.graffiti-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: url('graffiti_shapes.png') repeat;
    opacity: 0.1;
}

.graffiti-shape {
    position: absolute;
    border: 3px solid #000000;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 10%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    top: 20%;
    right: 15%;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 60px solid #000000;
    opacity: 0.1;
    animation-delay: 1s;
}

.shape-3 {
    bottom: 30%;
    left: 20%;
    width: 100px;
    height: 60px;
    border-radius: 50px;
    animation-delay: 2s;
}

.shape-4 {
    top: 60%;
    right: 25%;
    width: 60px;
    height: 60px;
    transform: rotate(45deg);
    animation-delay: 3s;
}

.shape-5 {
    bottom: 20%;
    right: 10%;
    width: 120px;
    height: 40px;
    border-radius: 20px;
    animation-delay: 4s;
}

.hero-container {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    color: #000000;
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 4px solid #000000;
    transform: skew(-2deg, 1deg);
    z-index: -1;
    opacity: 0.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    color: #333333;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 3px solid #000000;
    background: #ffffff;
    color: #000000;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    transform: skew(-5deg);
}

.cta-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: skew(-5deg) translateY(-2px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #ff0066, #00ff66);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-btn.primary:hover::before {
    opacity: 1;
}

.spray-decoration {
    position: absolute;
    background: url('spray_texture.png') no-repeat;
    background-size: contain;
    opacity: 1;
    pointer-events: none;
}

.spray-1 {
    top: 20%;
    left: 5%;
    width: 250px;
    height: 250px;
    background-image: url('spray_splash_1.png');
}

.spray-2 {
    bottom: 30%;
    right: 8%;
    width: 200px;
    height: 200px;
    background-image: url('spray_splash_2.png');
}

.spray-3 {
    top: 15%;
    right: 10%;
    width: 220px;
    height: 220px;
    background-image: url('spray_splash_1.png');
}

.graffiti-arrow {
    position: absolute;
    top: 50%;
    left: 90%;
    width: 200px;
    height: 120px;
    background: url('arrow_graffiti.png') no-repeat center;
    background-size: contain;
    opacity: 0.6;
    pointer-events: none;
}

/* Sections */
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    color: #000000;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) skew(-20deg);
    width: 100px;
    height: 4px;
    background: url('section_title_bg.png') no-repeat center;
    background-size: contain;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text-column {
    flex: 1;
    text-align: center;
}

.about-image-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terminal-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.terminal-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #333333;
    line-height: 1.8;
}

.about-icons {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.icon {
    font-size: 2rem;
}

.icon-text {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
}

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

.services-intro {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 50px;
    padding: 20px 40px;
    background: #ffffff;
    border: 3px solid #000000;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.service-card {
    background: #ffffff;
    border: 3px solid #000000;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    transform: skew(-2deg, 1deg);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 64px;
    height: 64px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
}

.service-card:nth-child(1)::before {
    background-image: url('icon_express.png');
}

.service-card:nth-child(2)::before {
    background-image: url('icon_fast.png');
}

.service-card:nth-child(3)::before {
    background-image: url('icon_design.png');
}

.service-card:hover {
    transform: skew(-2deg, 1deg) translateY(-5px);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.1);
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-desc {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.service-highlight {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    margin: 15px 0;
    font-style: italic;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features span {
    padding: 8px 15px;
    border: 2px solid #000000;
    background: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.extra-services {
    margin-top: 60px;
}

.extra-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.extra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.extra-card {
    background: #ffffff;
    border: 2px solid #000000;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.extra-card:hover {
    transform: translateY(-3px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.extra-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.extra-text {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

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

.portfolio-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.portfolio-card-link:hover .portfolio-card {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-card {
    background: #ffffff;
    border: 3px solid #000000;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.portfolio-card:nth-child(even) {
    transform: rotate(1deg);
}

.portfolio-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-card.preparing {
    position: relative;
    overflow: hidden;
}

.portfolio-card.preparing::before {
    content: 'KÉSZÜLŐBEN';
    position: absolute;
    top: 20px;
    right: -40px;
    background: #ff0066;
    color: white;
    padding: 5px 50px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.portfolio-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-desc {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.tag {
    padding: 5px 15px;
    border: 2px solid #000000;
    background: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preparing-tag {
    background: #ff0066;
    color: white;
    border-color: #ff0066;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.graffiti-wall {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        #000000 20px,
        #000000 22px
    );
}

.contact-text {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #333;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-block;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border: 4px solid #000000;
    background: #ffffff;
    color: #000000;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    transition: all 0.3s ease;
    transform: skew(-5deg);
    text-decoration: none;
}

.contact-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: skew(-5deg) translateY(-3px);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.2);
}

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

.easter-egg {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #000000;
    border-radius: 50%;
    pointer-events: all;
    cursor: pointer;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.easter-egg:nth-child(1) { top: 20%; left: 10%; }
.easter-egg:nth-child(2) { top: 60%; right: 15%; }
.easter-egg:nth-child(3) { bottom: 30%; left: 80%; }

.easter-egg:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 50px 0;
    text-align: center;
}

.footer-quote {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    font-style: italic;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid #ffffff;
}

.social-link:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 1px;
}

.legal-link {
    margin-top: 10px;
    font-size: 0.65rem;
    opacity: 0.3;
}

.legal-link a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.legal-link a:hover {
    opacity: 1;
    text-decoration: underline;
}

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

/* Highlight Unique Text */
.highlight-unique {
    background: linear-gradient(135deg, #ff0066, #ff6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: pulse-unique 2s ease-in-out infinite;
    position: relative;
}

.highlight-unique::after {
    content: '✨';
    position: absolute;
    right: -25px;
    top: -5px;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes pulse-unique {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: rotate(0deg) scale(1); }
    50% { opacity: 0.5; transform: rotate(180deg) scale(1.2); }
}

/* Flying Rocket Animation */
.rocket-container {
    position: fixed;
    left: -100px;
    bottom: -100px;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
}

.rocket-emoji {
    font-size: 80px;
    display: block;
}

@keyframes rocket-wobble {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

@keyframes rocket-fly {
    0% {
        left: -100px;
        bottom: -100px;
        opacity: 1;
        transform: rotate(45deg);
    }
    100% {
        left: calc(100% + 100px);
        bottom: calc(100% + 100px);
        opacity: 1;
        transform: rotate(45deg);
    }
}

.rocket-flying {
    animation: rocket-fly 2s linear forwards;
    opacity: 1 !important;
}

/* Fun Click Effects */
.click-burst {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    animation: burst 0.6s ease-out forwards;
}

@keyframes burst {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Bounce animation for buttons */
.cta-btn:active {
    animation: button-bounce 0.3s ease;
}

@keyframes button-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.95); }
}

/* Wiggle animation for service cards on hover */
.service-card:hover {
    animation: wiggle 0.5s ease;
}

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

@keyframes spray {
    0% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
    100% { opacity: 0; transform: scale(0) rotate(360deg); }
}

.spray-effect {
    position: absolute;
    width: 20px;
    height: 20px;
    background: url('spray_texture.png') no-repeat center;
    background-size: contain;
    animation: spray 0.5s ease-out forwards;
    pointer-events: none;
}

/* Service Pricing */
.service-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin: 20px 0;
    padding: 15px;
    border: 2px solid #000000;
    background: #f8f8f8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discount-badge {
    display: inline-block;
    font-size: 0.7rem;
    background: #ff0066;
    color: #ffffff;
    padding: 5px 10px;
    margin-left: 10px;
    border-radius: 3px;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Contact Invoice Info */
.contact-invoice {
    text-align: center;
    font-size: 1.2rem;
    margin: 20px auto 30px;
    color: #000000;
    font-weight: 600;
    padding: 15px 30px;
    border: 2px solid #000000;
    background: #ffffff;
    max-width: 800px;
    letter-spacing: 0.5px;
}

/* Why Website Section */
.why-website {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.why-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #333333;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.why-card {
    background: #ffffff;
    border: 3px solid #000000;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.1);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.why-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
}

.why-text {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.7;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    padding: 8px 0;
    font-size: 1rem;
    color: #666666;
    position: relative;
    padding-left: 25px;
}

.why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #000000;
    font-size: 1.2rem;
}

.why-cta {
    text-align: center;
    padding: 40px;
    background: #f8f8f8;
    border: 3px solid #000000;
    margin-top: 40px;
}

.why-cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        border-bottom: 2px solid #000000;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }
    
    .service-switch-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 999;
        margin-left: 0;
        padding: 12px 18px;
        font-size: 0.85rem;
        box-shadow: 0 5px 20px rgba(102, 0, 255, 0.4);
    }
    
    .free-video-badge {
        padding: 14px 25px;
        flex-direction: column;
        gap: 8px;
    }
    
    .badge-text {
        font-size: 1rem;
        text-align: center;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .terminal-image {
        max-width: 100%;
        transform: rotate(0deg);
    }
    
    .about-icons {
        gap: 30px;
    }
    
    .spray-decoration {
        display: none;
    }

    .services-grid,
    .portfolio-grid,
    .extra-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-intro {
        font-size: 1.1rem;
    }
    
    .services-intro {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
    
    .contact-invoice {
        font-size: 1.1rem;
        padding: 12px 20px;
    }

    .social-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card,
    .portfolio-card {
        padding: 20px;
    }

    .contact-btn {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
}

/* ============================================
   HOMEPAGE STYLES - Service Selector
   ============================================ */

.homepage-hero .hero-subtitle {
    max-width: 700px;
}

.service-selector {
    padding: 80px 0;
    background: #f8f8f8;
}

.selector-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 50px;
}

.selector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.selector-card {
    background: #ffffff;
    border: 3px solid #000000;
    padding: 50px 40px;
    text-decoration: none;
    color: #000000;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    overflow: hidden;
}

.selector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: height 0.3s ease;
}

.selector-web::before {
    background: linear-gradient(90deg, #ff0066, #ff6600);
}

.selector-video::before {
    background: linear-gradient(90deg, #6600ff, #00ccff);
}

.selector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.selector-card:hover::before {
    height: 8px;
}

.selector-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
}

.selector-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.selector-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.selector-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.selector-features li {
    padding: 8px 0;
    font-size: 1rem;
    color: #333;
    border-bottom: 1px solid #eee;
}

.selector-features li:last-child {
    border-bottom: none;
}

.selector-cta {
    display: inline-block;
    font-weight: 700;
    font-size: 1.1rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.selector-card:hover .selector-cta {
    transform: translateX(10px);
}

.selector-web:hover .selector-cta {
    color: #ff0066;
}

.selector-video:hover .selector-cta {
    color: #6600ff;
}

/* ============================================
   FULLPAGE SERVICE SELECTOR (Homepage)
   ============================================ */

.service-selector-fullpage {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.selector-header {
    text-align: center;
    margin-bottom: 50px;
}

.selector-main-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000000;
    margin-bottom: 15px;
    background: linear-gradient(to right, #ffffff 0%, #ffffff 100%);
    padding: 15px 40px;
    display: inline-block;
    border: 4px solid #000000;
    transform: skew(-3deg);
    box-shadow: 8px 8px 0 #000000;
}

.selector-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #666;
    margin-top: 20px;
    font-weight: 500;
}

.service-selector-fullpage .selector-grid {
    max-width: 1100px;
}

.service-selector-fullpage .selector-card {
    padding: 45px 35px;
}

.mini-footer {
    padding: 20px 0;
    background: #111;
}

.mini-footer .copyright {
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.mini-footer .legal-link {
    margin-top: 5px;
}

/* Why Us Home Section */
.why-us-home {
    padding: 80px 0;
    background: #ffffff;
}

.why-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
}

.why-icon-home {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.why-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-home {
    background: #f8f8f8;
}

/* ============================================
   VIDEO PRODUCTION PAGE STYLES
   ============================================ */

.video-hero .hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #6600ff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.video-section {
    padding: 80px 0;
}

.video-section:nth-child(even) {
    background: #f8f8f8;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: -40px auto 50px auto;
    line-height: 1.7;
}

/* Video Features Grid */
.video-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-feature-card {
    background: #ffffff;
    border: 2px solid #eee;
    padding: 40px;
    transition: all 0.3s ease;
}

.video-feature-card:hover {
    border-color: #6600ff;
    box-shadow: 0 10px 30px rgba(102, 0, 255, 0.1);
}

.video-feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.video-feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.video-feature-card p {
    color: #555;
    line-height: 1.7;
}

/* Equipment Section */
.equipment-section {
    background: #ffffff;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.equipment-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f8f8;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.equipment-card:hover {
    border-color: #000;
    background: #fff;
}

.equipment-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.equipment-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.equipment-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Services Video Grid */
.services-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-video-card {
    background: #ffffff;
    border: 3px solid #000;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0 rgba(0,0,0,0.1);
}

.service-video-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-video-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-video-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Free Video Section */
.free-video-section {
    background: linear-gradient(135deg, #6600ff 0%, #00ccff 100%);
    padding: 100px 0;
}

.free-video-box {
    background: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
    border: 4px solid #000;
    position: relative;
}

.free-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff0066;
    color: #fff;
    padding: 10px 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.free-video-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.free-video-subtitle {
    font-size: 1.3rem;
    color: #6600ff;
    font-weight: 600;
    margin-bottom: 25px;
}

.free-video-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.free-video-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: inline-block;
    text-align: left;
}

.free-video-features li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #333;
}

.large-cta {
    font-size: 1.2rem;
    padding: 20px 40px;
}

/* Workflow Timeline */
.workflow-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.workflow-step:last-child {
    border-bottom: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    color: #555;
    line-height: 1.6;
}

/* Target Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.audience-card {
    text-align: center;
    padding: 35px 25px;
    background: #fff;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

.audience-card:hover {
    border-color: #6600ff;
    transform: translateY(-5px);
}

.audience-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.audience-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.audience-card p {
    color: #666;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    background: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 2px solid #eee;
    padding: 30px 0;
}

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

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.faq-answer {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Video Contact Section */
.video-contact {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.video-contact .section-title,
.video-contact .contact-text {
    color: #ffffff;
}

.contact-cta-text {
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #00ccff;
}

/* Footer Navigation */
.footer-nav {
    margin: 20px 0;
    font-size: 0.9rem;
}

.footer-nav a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #000;
}

/* Responsive adjustments for new sections */
@media (max-width: 992px) {
    .selector-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .why-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid-home {
        grid-template-columns: 1fr;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .services-video-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .free-video-box {
        padding: 40px 25px;
        margin: 0 15px;
    }
    
    .free-video-title {
        font-size: 2rem;
    }
    
    .selector-card {
        padding: 35px 25px;
    }
    
    .workflow-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-number {
        margin: 0 auto;
    }
}

/* ============================================
   NEW COMPACT VIDEO PAGE STYLES
   ============================================ */

/* Features Strip */
.video-features-strip {
    background: #000;
    padding: 25px 0;
}

.features-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    font-size: 1rem;
    font-weight: 500;
}

/* Compact Services Grid */
.services-compact {
    padding: 70px 0;
    background: #fff;
}

.services-compact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-compact-card {
    background: #f8f8f8;
    padding: 30px 25px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-compact-card:hover {
    border-color: #6600ff;
    background: #fff;
    transform: translateY(-5px);
}

.service-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.service-compact-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-compact-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Free Video Compact */
.free-video-compact {
    background: linear-gradient(135deg, #6600ff 0%, #00ccff 100%);
    padding: 80px 20px;
    text-align: center;
}

.free-video-content {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 40px;
    border: 4px solid #000;
    box-shadow: 10px 10px 0 rgba(0,0,0,0.2);
}

.free-badge-large {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.free-video-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.highlight-text {
    background: linear-gradient(90deg, #6600ff, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.free-location {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 20px;
}

.free-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.free-checklist {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.free-checklist span {
    font-weight: 600;
    color: #333;
}

.large-cta {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Workflow Compact */
.workflow-compact {
    padding: 60px 0;
    background: #f8f8f8;
}

.workflow-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.workflow-step-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 15px 25px;
    border: 2px solid #000;
}

.step-num {
    width: 35px;
    height: 35px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-text {
    font-weight: 600;
    font-size: 1rem;
}

.workflow-arrow {
    font-size: 1.5rem;
    color: #999;
}

/* FAQ Compact */
.faq-compact {
    padding: 60px 0;
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-compact {
    background: #f8f8f8;
    padding: 25px;
    border-left: 4px solid #6600ff;
}

.faq-item-compact h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-item-compact p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Free Video Badge in Contact */
.video-contact {
    text-align: center;
}

.free-video-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #6600ff 0%, #00ccff 100%);
    border-radius: 50px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(102, 0, 255, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 0 20px 5px rgba(0, 204, 255, 0.3); }
}

.badge-icon {
    font-size: 1.8rem;
}

.badge-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.badge-text strong {
    font-weight: 800;
    text-transform: uppercase;
}

/* Responsive for new compact styles */
@media (max-width: 992px) {
    .services-compact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workflow-arrow {
        display: none;
    }
    
    .workflow-steps {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .features-row {
        gap: 25px;
    }
    
    .feature-item {
        width: 45%;
        justify-content: center;
    }
    
    .services-compact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .free-video-content {
        padding: 35px 25px;
    }
    
    .free-video-content h2 {
        font-size: 2.2rem;
    }
    
    .free-checklist {
        flex-direction: column;
        gap: 10px;
    }
    
    .workflow-steps {
        flex-direction: column;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .selector-main-title {
        padding: 12px 25px;
        font-size: 1.8rem;
    }
}
