/* ==========================================================================
   Base & Reset (Reference Style)
   ========================================================================== */
:root {
    --bg-main: #0b0b0b;
    --bg-card: #151515;
    --bg-card-hover: #1c1c1c;
    --accent: #f45b00;
    --accent-rgb: 244, 91, 0;
    --accent-hover: #ff721a;
    --text-white: #ffffff;
    --text-gray: #a3a3a3;
    --text-gray-light: #d1d1d1;
    --border-light: rgba(255, 255, 255, 0.15);
    
    --font-family: 'Inter', sans-serif;
    --transition: 0.3s ease;
    
    --radius-sm: 4px;
    --radius-md: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { background-color: var(--bg-main) !important; }
body {
    font-family: var(--font-family);
    color: var(--text-white);
    line-height: 1.5;
    overflow-x: hidden;
    background-color: transparent !important;
}
a { text-decoration: none; color: inherit; }
.text-accent {
    color: var(--accent);
}
.text-gradient {
    background: linear-gradient(90deg, #f45b00, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-title {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ==========================================================================
   Typography & Common Elements
   ========================================================================== */
.section-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}
.section-top.text-center {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.section-heading {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-white);
    margin: 0;
    text-transform: uppercase;
}
.section-desc {
    font-size: 16px;
    color: var(--text-gray-light);
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}
.section-top.text-center .section-desc {
    text-align: center;
    margin-top: 15px;
}

.section-title-small {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}
a:hover .arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}
.btn-primary:hover {
    background: #ff7f2a;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6);
    transform: translateY(-2px);
}
.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.1);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    background-color: rgba(11, 11, 11, 0);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    transition: background-color 0.3s ease, border-bottom 0.3s ease;
}
.header.scrolled {
    background-color: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    transition: padding 0.3s ease;
}
.header.scrolled .container {
    padding: 15px 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    display: grid;
    grid-template-columns: repeat(4, 5px);
    grid-template-rows: repeat(4, 5px);
    gap: 2px;
}
.logo-icon .dot { border-radius: 50%; }
.logo-icon .dot.orange { background: var(--accent); }
.logo-icon .dot.gray { background: #555; }
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-main {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1px;
}
.logo-sub {
    font-size: 10px;
    color: var(--accent);
    text-transform: lowercase;
}
.nav {
    display: flex;
    gap: 24px;
}
.nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-gray-light);
    transition: var(--transition);
}
.nav a:hover, .nav a.active {
    color: var(--text-white);
}
.header .btn-outline {
    padding: 10px 20px;
    font-size: 13px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-image-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.hero-image-bg video::-webkit-media-controls,
.hero-image-bg video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}

.youtube-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-youtube {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: none;
}


.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at bottom left, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 30%, transparent 60%);
    z-index: 2;
}
.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 60px;
    height: 100vh;
    pointer-events: none;
}
.hero-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    pointer-events: auto;
}
.hero-tags {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}
.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #ffffff;
    margin: 0 0 24px 0;
    text-shadow: none;
}
.hero-actions {
    display: flex;
    gap: 16px;
}
.hero-actions .btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}
.hero-actions .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}
.scroll-down {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    pointer-events: auto;
}
.scroll-wheel {
    animation: scroll-anim 1.5s infinite;
}
.scroll-down svg {
    animation: bounceMouse 2s ease-in-out infinite;
}

@keyframes bounceMouse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    40% { transform: translateY(8px); opacity: 0; }
    100% { transform: translateY(8px); opacity: 0; }
}
.scroll-wheel {
    animation: scrollWheel 2s ease-in-out infinite;
}

/* Entrance Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-tags { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: 0.1s; opacity: 0; }
.hero-title { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: 0.2s; opacity: 0; }
.hero-desc { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: 0.3s; opacity: 0; }
.hero-actions { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: 0.4s; opacity: 0; }
.scroll-down { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: 0.6s; opacity: 0; }

/* ==========================================================================
   Clients
   ========================================================================== */
.clients {
    padding: 60px 0;
    background-color: var(--bg-card);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}
.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.section-title-small {
    color: var(--text-gray);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.clients-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.clients-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scroll-marquee 30s linear infinite;
}
.clients-track:hover {
    animation-play-state: paused;
}
.logos-set {
    display: flex;
    gap: 80px;
    align-items: center;
}
.client-logo-img {
    width: 140px !important;
    height: 50px !important;
    max-height: 50px !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}
.client-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 40px)); }
}
.nav-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-gray);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.nav-btn:hover {
    border-color: var(--text-white);
    color: var(--text-white);
}
.clients-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.client-logo {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-gray);
}

/* ==========================================================================
   Portfolio
   ========================================================================== */
.portfolio {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px 32px;
    font-size: 14px;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    background: transparent;
}
.btn-arrow {
    transition: transform 0.3s ease;
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(244,91,0,0.05);
}
.btn-outline:hover .btn-arrow {
    transform: translateX(4px);
}
.view-all {
    font-size: 13px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.portfolio-item {
    display: flex;
    flex-direction: column;
}
.portfolio-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}
.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.portfolio-item:hover .portfolio-img img {
    transform: scale(1.05);
}
.portfolio-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244,91,0,0.08) 0%, rgba(244,91,0,0) 70%);
    z-index: 0;
    pointer-events: none;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.about-info .section-title-small {
    margin-bottom: 16px;
}
.about-heading {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}
.about-desc {
    color: var(--text-gray-light);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 16px;
}
.text-white {
    color: #fff;
    font-weight: 600;
}
.about-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray-light);
    font-size: 15px;
}
.about-features li svg {
    color: var(--accent);
    flex-shrink: 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.stat-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.stat-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(244, 91, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4), 0 0 20px rgba(244,91,0,0.1);
}
.stat-item svg {
    color: var(--accent);
    width: 28px;
    height: 28px;
    transition: transform 0.4s ease;
}
.stat-item:hover svg {
    transform: scale(1.1);
}
.stat-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    margin-top: auto;
}
.stat-label {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 60px 0 30px;
    background: #111;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}
.contact-list {
    list-style: none;
    margin-bottom: 24px;
}
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: var(--text-gray-light);
    margin-bottom: 16px;
}
.contact-list .icon {
    font-size: 16px;
}
.social-links {
    display: flex;
    gap: 16px;
}
.social-links a {
    font-size: 13px;
    color: var(--text-gray);
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: var(--accent);
}
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-link:hover {
    color: var(--accent);
}

.footer-map {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border-radius: var(--radius-sm);
    border: none;
    display: block;
    background: #1a1a1a;
    /* Optional: invert filter for dark mode map */
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(100%);
}

.footer-text {
    font-size: 14px;
    color: var(--text-gray-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 24px;
    font-size: 12px;
    color: var(--text-gray);
}
.footer-links {
    display: flex;
    gap: 24px;
}

.menu-toggle {
    display: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }
    
    .menu-toggle span {
        width: 30px;
        height: 3px;
        background: var(--text-white);
        border-radius: 10px;
        transition: all 0.3s linear;
        position: relative;
        transform-origin: 1px;
    }

    .menu-toggle.open span:first-child {
        transform: rotate(45deg);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    .menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        max-width: 100vw;
        background: var(--bg-main);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        gap: 30px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    }
    
    .nav a {
        font-size: 24px;
        color: var(--text-white);
    }
    
    .nav.open {
        right: 0;
    }
    
    .header .btn-outline {
        display: none;
    }
    .hero-content { width: 100%; padding-right: 0; }
    .about-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 15px;
    }
    .stat-item {
        padding: 20px 15px;
        gap: 10px;
    }
    .stat-number { font-size: 32px; }
    .stat-label { font-size: 10px; }
    .hero-title { font-size: 36px; }
    .section-heading { font-size: 28px; }
    
    .scroll-down { display: none; }
    .hero-actions { flex-wrap: wrap; }
    .hero-actions .btn { white-space: nowrap; }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ==========================================================================
   Workflow
   ========================================================================== */
.workflow {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.step {
    background: var(--bg-main);
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.step:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}
.step-num {
    font-size: 60px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.1);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
    transition: all 0.4s ease;
}
.step:hover .step-num {
    color: var(--accent);
    -webkit-text-stroke: 1px var(--accent);
    text-shadow: 0 0 8px rgba(255, 107, 0, 0.5),
                 0 0 15px rgba(255, 107, 0, 0.3);
    transform: translateY(-5px);
}
.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    margin-top: 20px;
}
.step-desc {
    color: var(--text-gray-light);
    line-height: 1.6;
    font-size: 15px;
}
@media (max-width: 991px) {
    .workflow-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .workflow-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Advantages
   ========================================================================== */
.advantages {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.adv-card {
    background: var(--bg-main);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.adv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.adv-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent);
}
.adv-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}
.adv-desc {
    color: var(--text-gray-light);
    line-height: 1.6;
    font-size: 14px;
}
@media (max-width: 1024px) {
    .adv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .adv-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Modern Spotlight Glow Effect
   ========================================================================== */
.adv-card, .step, .portfolio-item {
    position: relative;
    overflow: hidden;
}

.adv-card::before, .step::before, .portfolio-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x) var(--mouse-y),
        rgba(255, 107, 0, 0.08),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.adv-card:hover::before, .step:hover::before, .portfolio-item:hover::before {
    opacity: 1;
}

.adv-card > *, .step > *, .portfolio-item > * {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Neon Text Marquee
   ========================================================================== */
.text-marquee-section {
    padding: 80px 0;
    background: var(--bg-main);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-wrapper.skew {
    transform: skewY(-3deg);
    width: 105%;
}

.text-marquee {
    display: flex;
    width: max-content;
    white-space: nowrap;
    margin-bottom: -15px; /* overlap slightly */
}

.text-marquee-content {
    display: flex;
    align-items: center;
    animation: scrollText 40s linear infinite;
}

.text-marquee.reverse .text-marquee-content {
    animation: scrollTextReverse 35s linear infinite;
}

.text-marquee span {
    font-size: 6vw;
    font-weight: 800;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.2);
    margin: 0 20px;
    transition: color 0.3s ease, -webkit-text-stroke 0.3s ease, text-shadow 0.3s ease;
    cursor: default;
    letter-spacing: -1px;
}

/* Second row styling */
.text-marquee.reverse span.solid {
    color: var(--accent);
    -webkit-text-stroke: 0;
    text-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
    font-style: italic;
}

.text-marquee.reverse span.solid:hover {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* Neon hover effect for first row */
.text-marquee span:not(.solid):hover {
    color: var(--accent);
    -webkit-text-stroke: 1px var(--accent);
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.8), 0 0 40px rgba(255, 107, 0, 0.4);
}

.text-marquee .dot {
    font-size: 4vw;
    color: var(--accent);
    -webkit-text-stroke: 0;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
    margin: 0;
}

.text-marquee.reverse .dot {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes scrollTextReverse {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

@media (max-width: 991px) {
    .text-marquee span { font-size: 8vw; }
    .text-marquee .dot { font-size: 5vw; }
}
@media (max-width: 768px) {
    .text-marquee span { font-size: 10vw; }
    .text-marquee .dot { font-size: 6vw; }
    .text-marquee-section { padding: 50px 0; }
}

/* ==========================================================================
   Services
   ========================================================================== */
.services {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.service-card {
    background: var(--bg-main);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}
.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--accent);
}
.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}
.service-desc {
    color: var(--text-gray-light);
    line-height: 1.6;
    font-size: 15px;
}
@media (max-width: 991px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Production (Team)
   ========================================================================== */
.production {
    padding: 80px 0;
}
.production-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.prod-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
}
.prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.prod-card:hover .prod-img {
    transform: scale(1.1);
}
.prod-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}
.prod-overlay h4 {
    color: #fff;
    font-size: 20px;
    margin: 0;
}
@media (max-width: 991px) {
    .production-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .production-grid { grid-template-columns: 1fr; }
    .prod-card { height: 250px; }
}

/* ==========================================================================
   Quiz / Calculator
   ========================================================================== */
.quiz-section {
    padding: 80px 0;
}
.quiz-container {
    display: flex;
    align-items: stretch;
    background: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
}
.quiz-content {
    flex: 1.2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.quiz-image {
    flex: 1;
    position: relative;
    min-height: 500px;
}
.quiz-image::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 30%;
    background: linear-gradient(to right, var(--bg-main) 0%, transparent 100%);
    z-index: 2;
}
.quiz-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 3;
    transition: background 0.5s ease;
}
.quiz-container:hover .quiz-image::after {
    background: rgba(0, 0, 0, 0.05);
}
.quiz-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: 1;
    filter: contrast(1.05) saturate(0.9);
}
.quiz-question {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.quiz-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}
.quiz-btn:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--accent);
    transform: translateX(10px);
}
.quiz-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.quiz-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
}
.quiz-input:focus {
    outline: none;
    border-color: var(--accent);
}
@media (max-width: 991px) {
    .quiz-container { flex-direction: column; }
    .quiz-content { padding: 40px 20px; }
    .quiz-image { min-height: 350px; }
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews {
    padding: 80px 0;
}
.reviews-slider-wrapper {
    position: relative;
    margin-top: 50px;
}
.reviews-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.reviews-slider::-webkit-scrollbar {
    display: none;
}
.review-card {
    background: var(--bg-secondary);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
}
.reviews-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.reviews-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.reviews-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}
@media (max-width: 991px) {
    .review-card {
        flex: 0 0 calc(50% - 15px);
    }
}
@media (max-width: 767px) {
    .review-card {
        flex: 0 0 85%;
    }
}
.stars {
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 30px;
    font-style: italic;
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}
.r-avatar {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}
.r-info strong {
    display: block;
    color: #fff;
    font-size: 16px;
    margin-bottom: 5px;
}
.r-info span {
    color: var(--text-gray-light);
    font-size: 13px;
}
@media (max-width: 991px) {
    .reviews-slider { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .reviews-slider { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
    padding: 80px 0;
}
.faq-accordion {
    max-width: 800px;
    margin: 50px auto 0;
}
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}
.faq-question:hover {
    color: var(--accent);
}
.faq-icon {
    font-size: 24px;
    color: var(--accent);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p {
    color: var(--text-gray-light);
    line-height: 1.6;
    padding-bottom: 20px;
    font-size: 15px;
}

/* ==========================================================================
   Dynamic Background & Orbs
   ========================================================================== */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 30px 30px;
}
.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: floatOrb 20s infinite ease-in-out alternate;
}
.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 107, 0, 0.15);
    top: -100px;
    left: -100px;
}
.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(0, 150, 255, 0.1);
    bottom: -200px;
    right: -100px;
    animation-delay: -5s;
}
.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 0, 128, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.2); }
}

/* ==========================================================================
   Marquee (Running Text)
   ========================================================================== */
.marquee-section {
    background: var(--bg-secondary);
    padding: 20px 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.marquee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 30px;
    animation: scrollMarquee 20s linear infinite;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-gray-light);
    letter-spacing: 1.5px;
}
.marquee-content .dot {
    color: var(--accent);
}
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ==========================================================================
   Scroll Reveal Animation
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Anatomy of a Letter
   ========================================================================== */
.anatomy-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}
.anatomy-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 60%);
    z-index: 0;
    filter: blur(60px);
    pointer-events: none;
}
.anatomy-image-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    /* Softly fade the edges of the image into the black background */
    -webkit-mask-image: radial-gradient(50% 50% at 50% 50%, #000 65%, transparent 100%);
    mask-image: radial-gradient(50% 50% at 50% 50%, #000 65%, transparent 100%);
    z-index: 1;
}
.anatomy-img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05); /* Slight zoom to counter mask clipping */
}
.anatomy-pin {
    position: absolute;
    z-index: 10;
}
.pin-dot {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    animation: pulsePin 2s infinite;
}
.pin-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}
@keyframes pulsePin {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(255, 107, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}
.pin-card {
    position: absolute;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    width: 250px;
    top: 50%;
    left: 40px;
    transform: translateY(-50%) translateX(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}
.anatomy-pin:hover .pin-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}
.pin-card h4 {
    color: var(--accent);
    margin-bottom: 8px;
    font-size: 16px;
}
.pin-card p {
    font-size: 13px;
    color: var(--text-gray-light);
    line-height: 1.5;
}

/* Pin positions over the 3D letter */
.pin-1 { top: 62%; left: 56%; } /* Акрил (спереду на правій ніжці) */
.pin-2 { top: 20%; left: 51%; } /* Борт (самий верх літери) */
.pin-3 { top: 54%; left: 45%; } /* LED (всередині ліворуч) */
.pin-4 { top: 76%; left: 41%; } /* ПВХ (самий низ ліворуч) */

.anatomy-mobile-list {
    display: none;
    margin-top: 30px;
}
.anatomy-list-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 8px;
}
.list-num {
    background: var(--accent);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}
.list-text strong {
    color: #fff;
}
.list-text {
    font-size: 14px;
    color: var(--text-gray-light);
    line-height: 1.5;
}
@media (max-width: 768px) {
    .pin-card { display: none; }
    .anatomy-mobile-list { display: block; }
    .pin-dot::after { content: attr(data-id); color: #fff; background: transparent; font-size: 12px; font-weight: bold; }
}

/* ==========================================================================
   Day/Night Slider
   ========================================================================== */
.slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}
@media (max-width: 768px) {
    .slider-container { height: 350px; }
}
.slider-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    pointer-events: none;
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    border: none !important;
}
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}
.slider-overlay .slider-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #fff;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 20;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.slider-handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #111;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    gap: 2px;
}
.slider-handle-button svg {
    width: 16px;
    height: 16px;
}
.slider-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 30;
}
.slider-labels {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background: #111;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.label-day { color: #888; }
.label-night { color: var(--accent); text-shadow: 0 0 10px rgba(255, 107, 0, 0.5); }

/* --- Modal Popup --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}
.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}
.modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none; border: none;
    color: var(--text-gray);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}
.modal-close:hover { color: #fff; }
.modal-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.1;
}
.modal-desc {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
}
.form-group { margin-bottom: 20px; }
.form-input {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}
.form-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.05);
}
.form-input::placeholder { color: rgba(255,255,255,0.3); }



/* Elementor Global Resets for 1-in-1 Design */
.elementor-widget-wrap {
    padding: 0 !important;
}
.elementor-container {
    padding: 0 !important;
    max-width: 100% !important;
}
.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: 0 !important;
}
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100% !important;
}
.elementor-widget {
    margin-bottom: 0 !important;
}



/* Elementor Editor Visibility Fixes */
body.elementor-editor-active .hero-tags,
body.elementor-editor-active .hero-title,
body.elementor-editor-active .hero-desc,
body.elementor-editor-active .hero-actions,
body.elementor-editor-active .scroll-down,
body.elementor-editor-active .reveal,
body.elementor-editor-active .workflow-step,
body.elementor-editor-active .faq-item,
body.elementor-editor-active .review-card,
body.elementor-editor-active .quiz-step {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

/* Contact Form 7 Overrides */
.wpcf7 .form-group { margin-bottom: 1.5rem; }
.wpcf7-submit.btn { width: 100%; margin-top: 0.5rem; }
.wpcf7 form .wpcf7-response-output { border-radius: 8px; font-size: 14px; margin-top: 15px; padding: 10px; border-color: rgba(255,255,255,0.1); color: #fff; }
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output { border-color: #ff3b30; }
.wpcf7 form.sent .wpcf7-response-output { border-color: #34c759; }
.wpcf7-not-valid-tip { font-size: 12px; color: #ff3b30; margin-top: 5px; display: block; }


/* Textarea Height Fix */
textarea.form-input, .wpcf7-form-control.wpcf7-textarea {
    height: 80px !important;
    min-height: 80px !important;
    resize: vertical;
}


/* CF7 Global Overrides to match Theme */
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-textarea,
.wpcf7-form-control.wpcf7-number,
.wpcf7-form-control.wpcf7-tel,
.wpcf7-form-control.wpcf7-email {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
    margin-top: 5px;
}
.wpcf7-form-control.wpcf7-text:focus,
.wpcf7-form-control.wpcf7-textarea:focus,
.wpcf7-form-control.wpcf7-number:focus,
.wpcf7-form-control.wpcf7-tel:focus,
.wpcf7-form-control.wpcf7-email:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.05);
}
.wpcf7-form-control::placeholder { color: rgba(255,255,255,0.3); }

.wpcf7-form-control.wpcf7-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    width: 100%;
    margin-top: 15px;
}
.wpcf7-form-control.wpcf7-submit:hover {
    background: #ff7f2a;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6);
    transform: translateY(-2px);
}
.wpcf7 form p {
    margin-bottom: 15px;
}



/* Premium Portfolio Styles */
.portfolio-page-header {
    padding-top: 200px;
    padding-bottom: 100px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(to bottom, rgba(10,10,10,0) 0%, rgba(10,10,10,1) 100%);
}
.portfolio-page-title {
    font-size: 80px;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: #ffffff;
    text-transform: uppercase;
}
.portfolio-page-desc {
    color: rgba(255,255,255,0.5);
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.premium-category {
    padding: 120px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    display: flex;
    align-items: flex-start;
    gap: 60px;
    position: relative;
}
.premium-category:nth-child(even) {
    flex-direction: row-reverse;
    background: rgba(255,255,255,0.01);
}

.category-sidebar {
    flex: 0 0 350px;
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cat-huge-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #fff;
    text-transform: uppercase;
}
.cat-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.mosaic-grid {
    flex: 1;
    column-count: 2;
    column-gap: 20px;
}

.mosaic-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
}
.mosaic-item.large {
    column-span: all;
}
.mosaic-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255,255,255,0.2);
    z-index: 10;
}

.mosaic-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.mosaic-item:hover img {
    transform: scale(1.05);
}

.glass-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 992px) {
    .premium-category, .premium-category:nth-child(even) {
        flex-direction: column;
        gap: 40px;
    }
    .category-sidebar {
        position: relative;
        top: 0;
        flex: auto;
    }
    .portfolio-page-title { font-size: 48px; }
    .cat-huge-title { font-size: 40px; }
}

a.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.4);
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.btn-glow:hover {
    box-shadow: 0 0 50px rgba(var(--accent-rgb), 0.7);
    transform: translateY(-3px);
    color: #fff;
}
