/* ZAJNO STYLE DARK THEME
 * Colors: Deep Black, Bright White, Emerald Accent
 * Typography: Inter (Sans) - Massive & Bold
 */

 :root {
    --bg-color: #080808;
    --text-main: #f5f5f5;
    --primary: #0B3626; /* Original Brand Green */
    --primary-glow: rgba(11, 54, 38, 0.2);
    --border: rgba(255, 255, 255, 0.05); /* Architectural thin borders */
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 9999999;
    pointer-events: none;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.03;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Page Specific Backgrounds */
.home-page {
    background-color: #030806;
    background-image: 
        radial-gradient(ellipse at top left, rgba(11, 218, 114, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, rgba(11, 54, 38, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    background-size: 100% 100%;
    background-attachment: fixed;
}

.services-page {
    background-image: 
        linear-gradient(rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.92)),
        url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

/* Custom Text Selection */
::selection {
    background-color: var(--primary);
    color: var(--bg-color);
}
::-moz-selection {
    background-color: var(--primary);
    color: var(--bg-color);
}

/* Typography Elements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.03em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img, video {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
}

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


.has-mega-menu {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(11, 54, 38, 0.1);
    padding: 80px 10%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Background Dim Overlay */
.header::after {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.header:has(.has-mega-menu:hover)::after {
    opacity: 1;
    visibility: visible;
}

.mega-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1600px;
    margin: 0 auto;
}

.mega-col h3 {
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    opacity: 0.9;
}

.mega-col ul {
    list-style: none;
}

.mega-col ul li {
    margin-bottom: 15px;
}

.mega-col ul li a {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-transform: none;
    font-weight: 500;
}

.mega-col ul li a i {
    font-size: 0.8rem;
    color: var(--primary);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.mega-col ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.mega-col ul li a:hover i {
    opacity: 1;
    transform: translateX(3px);
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition);
}
.header.scrolled {
    padding: 20px 5%;
    background: rgba(8, 8, 8, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.logo a {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.menu-btn {
    width: 30px;
    height: 10px;
    display: none; /* Hidden by default, shown on mobile */
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.main-nav {
    display: flex;
    gap: 30px;
    margin: 0 40px;
    list-style: none;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.main-nav a {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary);
    transform: translateY(-2px);
    display: inline-block;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    font-weight: 700;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-proposal {
    background: #fff;
    color: #000;
    font-weight: 800;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1.5px solid var(--primary);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.btn-proposal:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--primary-glow);
}

.blinking-green-white {
    animation: blinkTextOnly 0.8s infinite;
    transition: none !important;
}

@keyframes blinkTextOnly {
    0%, 100% { color: #000 !important; }
    50% { color: #11a77a !important; }
}

/* CAMERA VIEWFINDER */
.camera-viewfinder {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 5;
    padding: 40px;
}

.corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.corner.tl { top: 40px; left: 40px; border-right: none; border-bottom: none; }
.corner.tr { top: 40px; right: 40px; border-left: none; border-bottom: none; }
.corner.bl { bottom: 40px; left: 40px; border-right: none; border-top: none; }
.corner.br { bottom: 40px; right: 40px; border-left: none; border-top: none; }

.rec-dot {
    position: absolute;
    top: 50px;
    left: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}
.rec-dot::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.battery {
    position: absolute;
    top: 50px;
    right: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
}
.bat-icon {
    width: 25px;
    height: 12px;
    border: 1.5px solid #fff;
    position: relative;
    padding: 1px;
}
.bat-icon::after {
    content: '';
    display: block;
    height: 100%;
    width: 85%;
    background: #00ff88;
}
.bat-icon::before {
    content: '';
    position: absolute;
    right: -4px; top: 2px;
    width: 3px; height: 5px;
    background: #fff;
}

.center-cross {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 40px; height: 40px;
    opacity: 0.3;
}
.center-cross::before, .center-cross::after {
    content: '';
    position: absolute;
    background: #fff;
}
.center-cross::before { width: 100%; height: 1px; top: 50%; left: 0; }
.center-cross::after { width: 1px; height: 100%; top: 0; left: 50%; }

.shutter-flash {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    z-index: 99999;
    transition: opacity 0.15s ease-out;
}
.shutter-flash.active {
    opacity: 1;
    transition: none;
}

@media (max-width: 1100px) {
    .main-nav, .header-actions { display: none; }
    .menu-btn { display: flex; }
}

/* FLOATING GLASS BUTTONS (APPLE STYLE) */
.glass-pill-float {
    position: fixed;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 15px;
    cursor: none;
    z-index: 1000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    text-decoration: none;
}

.glass-pill-float.whatsapp-pos {
    bottom: 40px;
    right: 40px;
}

.glass-pill-float.menu-pos {
    bottom: 40px;
    left: 40px;
}

.glass-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

.glass-text {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-left: 0;
    overflow: hidden;
}

.glass-pill-float:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.glass-pill-float:hover .glass-icon svg {
    transform: scale(1.1);
}

.glass-pill-float:hover .glass-text {
    max-width: 150px;
    opacity: 1;
    margin-left: 15px;
    margin-right: 10px;
}

.camera-3d-float {
    position: fixed;
    top: 20%;
    left: -150px;
    width: 120px;
    height: 120px;
    z-index: 100;
    pointer-events: none;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    opacity: 0.8;
}

.camera-3d-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(-10deg);
}


.whatsapp-3d-float svg, .camera-3d-float svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}

.whatsapp-3d-float:hover svg {
    transform: scale(1.1) rotate(10deg);
}

.camera-svg {
    color: var(--primary); /* Gold */
}

.svg-3d {
    display: block;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Offset for header */
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
}
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(8,8,8,0.4) 0%, rgba(8,8,8,1) 100%);
    z-index: 0;
}
.hero-content {
    text-align: center;
    z-index: 1;
}
.hero-content h1 {
    font-size: clamp(3rem, 8vw, 8rem);
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    color: #fff;
    font-family: 'Cinzel', serif;
}
.hero-sub {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888;
    margin-top: 20px;
}

/* WORKS GRID (Reel Layout) */
/* WORKS PORTFOLIO (Sliding Reel) */
.works-portfolio {
    padding: 150px 0 50px;
    background: var(--bg-color);
}

.portfolio-marquee {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: slideLeft 40s linear infinite;
}

.portfolio-marquee:hover {
    animation-play-state: paused;
}

.work-item {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 12px;
    aspect-ratio: 9 / 16; /* Reel size */
    width: 250px; /* Fixed width for horizontal scrolling, reduced for smaller videos */
    flex-shrink: 0;
}

.video-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #111;
}

.bg-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.7;
    filter: grayscale(100%); /* B&W by default */
}

.work-item:hover .bg-media {
    transform: scale(1.05);
    opacity: 1;
    filter: grayscale(0%); /* Color on hover */
}

.work-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    z-index: 2;
    pointer-events: none;
}

.work-caption h4 {
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.work-caption p {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}

.video-type {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

/* VIRAL IMPACT SECTION */
.viral-impact {
    padding: 150px 0;
    background: #080808;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.video-embed-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 9;
    margin: 0 auto 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(11, 54, 38, 0.1);
    border: 1px solid rgba(11, 54, 38, 0.2);
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.stat-box p {
    font-size: 1rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

/* MARQUEE */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-color);
}
.marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}
.marquee span {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    padding-right: 50px;
    color: transparent;
    -webkit-text-stroke: 1px var(--gray);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* WORKS / PROJECTS (ZAJNO) */
.works-zajno {
    padding: 150px 0;
}
.section-title {
    font-size: clamp(3rem, 8vw, 8rem);
    line-height: 1;
    margin-bottom: 150px;
    text-transform: uppercase;
}

.z-project {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 150px;
    gap: 5%;
}
.z-project.reverse {
    flex-direction: row-reverse;
}

.z-project-num {
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: 300;
    color: var(--gray);
    flex: 0 0 10%;
}
.z-project-media {
    flex: 0 0 50%;
    height: 70vh;
    overflow: hidden;
    border-radius: 4px;
}
.z-project-media img {
    width: 100%;
    height: 120%; /* For parallax */
    object-fit: cover;
}
.z-project-info {
    flex: 0 0 30%;
}
.z-project-info h3 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
}
.z-project-info p {
    font-size: 1.2rem;
    color: var(--gray);
}

/* ABOUT SECTION */
.about-zajno {
    padding: 150px 0;
    border-top: 1px solid var(--border);
}
.about-zajno h2 {
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1.1;
    margin-bottom: 40px;
}
.about-zajno p {
    font-size: clamp(1.2rem, 2vw, 2rem);
    color: var(--gray);
    max-width: 900px;
    margin: 0 auto;
}
.glass-pill-btn {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), inset 0 0 15px rgba(255,255,255,0.05);
}

.glass-pill-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.1);
}

/* MODERN CONTACT SECTION (END PAGE) */
.contact-modern {
    position: relative;
    width: 100%;
    min-height: 80vh;
    background: var(--bg-color); /* Matches website dark theme */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Inter', sans-serif;
    padding: 100px 0 150px; /* Space for skyline at bottom */
    overflow: hidden;
}

/* Dynamic Glow Background (Aurora Effect) */
.dynamic-glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    max-width: 1400px;
    height: 600px;
    background: radial-gradient(ellipse at top center, rgba(11, 218, 114, 0.25) 0%, rgba(11, 54, 38, 0.4) 40%, transparent 70%);
    filter: blur(100px);
    border-radius: 50%;
    transform: translateX(-50%);
    opacity: 0.8;
    mix-blend-mode: screen;
    pointer-events: none;
}

/* Huge Background Text */
.huge-bg-text {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    font-size: 22vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    text-align: center;
    line-height: 0.8;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.05em;
    user-select: none;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1000px;
    margin: 0 auto;
}

/* LEFT SIDE: Info */
.contact-left-info h2 {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 500;
    color: #fff;
    margin-bottom: 50px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.info-list p {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.info-list span {
    display: inline-block;
    width: 120px;
    font-weight: 400;
    opacity: 0.9;
}

.info-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.info-list a:hover {
    color: var(--primary);
}

/* RIGHT SIDE: Form */
.contact-right-form h2 {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 500;
    color: #fff;
    margin-bottom: 50px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.simple-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start; /* Align button to left */
}

.rounded-input {
    width: 100%;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.03); /* Dark theme input */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px; /* Fully rounded ends like reference */
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

textarea.rounded-input {
    border-radius: 20px;
    resize: vertical;
    min-height: 150px;
}

.rounded-input::placeholder {
    color: #666;
}

.rounded-input:focus {
    border-color: var(--primary);
    background: rgba(11, 54, 38, 0.1);
    box-shadow: 0 0 15px rgba(11, 54, 38, 0.3);
}

.pill-btn {
    background: transparent;
    color: #fff;
    border: 2px solid var(--primary);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: none;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pill-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 167, 122, 0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* PRELOADER */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #080808;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.preloader-animation-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;
}

#crown-svg {
    width: 80px;
    height: 80px;
    z-index: 2;
    margin-bottom: 0px;
}

.preloader-logo-text {
    text-align: center;
    opacity: 0; /* Hidden initially */
}

.preloader-queenz {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #f5f5f5;
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
}

.preloader-studio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.preloader-studio .line {
    height: 1.5px;
    width: 35px;
    background-color: #f5f5f5;
}

.preloader-studio .text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.8rem, 1.5vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.5em;
    color: #f5f5f5;
    margin-right: -0.5em; /* Offset for letter-spacing */
}

.header-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.header-logo-img:hover {
    transform: scale(1.05);
}

.mindmap-section {
    padding: 150px 5%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 5;
}
.mindmap-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 80px;
    width: 100%;
    max-width: 1400px;
    position: relative;
    z-index: 2;
}
#mindmap-svg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}
.mindmap-svg-path {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2px;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}
.svg-arrow-head {
    fill: var(--primary);
    opacity: 0;
}
.services-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.center-logo-container {
    position: relative;
    z-index: 10;
}
.center-logo-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    box-shadow: 0 0 60px var(--primary-glow);
    object-fit: contain;
    border: 5px solid var(--primary);
    padding: 20px;
    background: transparent;
}
.mindmap-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    padding: 15px 35px 15px 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4), inset 0 0 15px rgba(255,255,255,0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
}
.mindmap-box:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}
.col-right .mindmap-box {
    flex-direction: row-reverse;
    padding: 15px 15px 15px 30px;
    text-align: right;
}
.box-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #000;
    box-shadow: 0 0 20px var(--primary-glow);
    transition: transform 0.3s ease;
}
.col-left .box-icon { margin-right: 20px; }
.col-right .box-icon { margin-left: 20px; }
.box-icon svg { width: 24px; height: 24px; }
.box-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}
.box-text p {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
    line-height: 1.4;
}
@media (max-width: 1100px) {
    .mindmap-container { grid-template-columns: 1fr; gap: 30px; }
    #mindmap-svg { display: none; }
    .center-logo-container { order: -1; margin-bottom: 20px; text-align: center; }
    .col-right .mindmap-box {
        flex-direction: row; padding: 15px 30px 15px 15px; text-align: left;
    }
    .col-right .box-icon { margin-left: 0; margin-right: 20px; }
    .center-logo-img { width: 200px; height: 200px; }
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    display: flex;
}

.testimonial-marquee-wrapper::before,
.testimonial-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.testimonial-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}
.testimonial-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.testimonial-marquee {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 20px 0;
    animation: slideLeft 30s linear infinite;
}

.testimonial-marquee:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    width: 400px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(11, 54, 38, 0.05);
}

.testimonial-card .stars {
    color: #ffb800;
    font-size: 1.2rem;
    display: flex;
    gap: 5px;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: #ccc;
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-card h4 {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes slideLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}
