@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --bg-color: #030303;
    --text-color: #ffffff;
    --accent: #c9a86a;
    --accent-dim: rgba(201, 168, 106, 0.4);
    --secondary-bg: #0a0a0a;
    --border: rgba(255, 255, 255, 0.05);
    --glass: rgba(0, 0, 0, 0.7);
    --transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --img-fallback: #111111;
    --cursor-size: 20px;
    --cursor-blend: difference;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-color); }
::-webkit-scrollbar-thumb { background: var(--accent-dim); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: #fff;
    background-color: #000;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    cursor: none; /* Hide default cursor for custom cursor */
}

/* --- Premium Custom Cursor --- */
.cursor {
    width: var(--cursor-size);
    height: var(--cursor-size);
    background-color: #fff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: var(--cursor-blend);
    transition: transform 0.2s ease, width 0.3s ease, height 0.3s ease;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 168, 106, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease;
    transform: translate(-50%, -50%);
}

.cursor.active {
    transform: translate(-50%, -50%) scale(4);
    background-color: var(--accent);
}

.cursor-follower.active {
    transform: translate(-50%, -50%) scale(0.5);
    border-color: var(--accent);
}

/* Hide cursor on mobile */
@media (max-width: 1024px) {
    html, body { cursor: auto; }
    .cursor, .cursor-follower { display: none; }
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-in-out, visibility 1s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.loader-line {
    width: 150px;
    height: 1px;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.loader-line::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: loaderLine 2s infinite ease-in-out;
}

@keyframes loaderLine {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}


h1, h2, h3, .accent-font {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

p {
    font-weight: 200;
    color: rgba(255, 255, 255, 0.6);
}

img { max-width: 100%; display: block; background-color: var(--img-fallback); transition: var(--transition); }

/* --- Global Layout --- */

section {
    position: relative;
    padding: 160px 0;
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 4%;
    width: 100%;
}

.full-height { min-height: 100vh; display: flex; align-items: center; width: 100%; }

/* --- Navigation & Mobile Menu --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 40px 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(3, 3, 3, 0.98);
    padding: 20px 0;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    z-index: 1001;
}

.logo span { color: var(--accent); }

.nav-links {
    display: flex;
    gap: clamp(15px, 2.5vw, 40px);
    transition: 0.4s;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: clamp(0.65rem, 0.8vw, 0.75rem);
    letter-spacing: clamp(1px, 0.2vw, 3px);
    text-transform: uppercase;
    opacity: 0.5;
    transition: 0.4s;
    white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
    color: var(--accent);
}

/* Mobile Toggle */
/* Mobile Toggle Animation (X-Morph) */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 1px;
    background: white;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Fullscreen Menu Overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(3, 3, 3, 0.95);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: var(--transition);
    backdrop-filter: blur(20px);
}

.mobile-menu.active { transform: translateY(0); }

.menu-close {
    position: absolute;
    top: 40px;
    right: 5%;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.4s;
    line-height: 1;
}

.menu-close:hover {
    opacity: 1;
    color: var(--accent);
    transform: rotate(90deg);
}

.mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: white;
    text-decoration: none;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu a:nth-child(1) { transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s; }
.mobile-menu a:nth-child(2) { transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s; }
.mobile-menu a:nth-child(3) { transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s; }
.mobile-menu a:nth-child(4) { transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s; }
.mobile-menu a:nth-child(5) { transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s; }

.mobile-menu a:hover { opacity: 1; color: var(--accent); }

/* --- Hero --- */
.hero {
    position: relative;
    background: #000;
}

#canvas-container {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.6;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: #050505;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: brightness(0.5) contrast(1.1) grayscale(0.2);
    transform: scale(1.1);
    animation: panEffect 30s infinite alternate linear;
}

@keyframes panEffect {
    from { transform: scale(1.1) translateX(0); }
    to { transform: scale(1.2) translateX(-2%); }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 100px);
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(4rem, 12vw, 9rem);
    line-height: 0.85;
    letter-spacing: -4px;
    margin-bottom: 50px;
}

.hero-text h1 span { color: var(--accent); }

.hero-text p {
    font-size: 1.6rem;
    max-width: 700px;
    margin-bottom: 60px;
    line-height: 1.3;
}

/* --- Integrated Hero Form --- */
.hero-glass-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 40px 50px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px);
    box-shadow: 
        0 40px 100px rgba(0,0,0,0.8),
        inset 0 0 0 1px rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    animation: formBreathing 8s infinite ease-in-out;
}

@keyframes formBreathing {
    0%, 100% { box-shadow: 0 40px 100px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(255,255,255,0.05); }
    50% { box-shadow: 0 60px 120px rgba(0,0,0,0.9), inset 0 0 0 1px rgba(201, 168, 106, 0.2); }
}

.hero-glass-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.hero-glass-form h3 {
    margin-bottom: 30px;
    font-size: 2.2rem;
    letter-spacing: -1.5px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
    font-size: 1.05rem;
    transition: 0.4s;
    border-radius: 0;
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 0;
    font-size: 0.9rem;
    opacity: 0.4;
    pointer-events: none;
    transition: 0.4s;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -15px;
    font-size: 0.7rem;
    opacity: 1;
    color: var(--accent);
}

.form-group input:focus, .form-group textarea:focus {
    border-bottom-color: var(--accent);
    outline: none;
}

.btn-submit, .btn-primary {
    display: inline-block;
    width: 100%;
    padding: 20px;
    background: var(--accent);
    border: none;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.6s;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-submit::after, .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.btn-submit:hover::after, .btn-primary:hover::after {
    left: 100%;
    transition: 0.8s;
}

.btn-submit:hover, .btn-primary:hover {
    background: #fff;
    letter-spacing: 6px;
    transform: translateY(-8px);
}

/* --- Photo-First Layouts --- */

.dual-image-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5vw;
}

.image-card {
    position: relative;
    overflow: hidden;
    height: 800px;
    background-color: var(--img-fallback);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1), filter 1s;
}

.image-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px;
    opacity: 0;
    transition: 0.8s;
}

.image-card:hover .image-overlay { opacity: 1; }

.image-overlay h3 { font-size: 3rem; margin-bottom: 15px; }
.image-overlay p { text-transform: uppercase; letter-spacing: 4px; font-size: 0.85rem; color: var(--accent); font-weight: 400; }

/* --- Stats & Quotes --- */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
}

.stat-item h2 { font-size: 4rem; color: var(--accent); margin-bottom: 10px; }
.stat-item p { text-transform: uppercase; letter-spacing: 2px; font-size: 0.75rem; opacity: 0.5; }

.philosophical-quote {
    text-align: center;
    padding: 180px 0;
}

.philosophical-quote h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-style: italic;
    line-height: 1.1;
    max-width: 1100px;
    margin: 0 auto;
    font-weight: 300;
}

/* --- Project Sliders --- */
.image-card {
    position: relative;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
    height: 100%;
    width: 100%;
}

.slider-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: 0.3s;
    font-size: 0.8rem;
}

.slider-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 40px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: 0.3s;
}

.dot.active {
    background: var(--accent);
    width: 15px;
    border-radius: 10px;
}

/* --- Project Sliders --- */
.image-card {
    position: relative;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
    height: 100%;
}

.slider-slide {
    flex: 0 0 100%;
    height: 100%;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.slider-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: 0.3s;
}

.dot.active {
    background: var(--accent);
    width: 20px;
    border-radius: 10px;
}

/* --- Editorial Detail Section --- */

.editorial-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 150px;
    align-items: center;
}

.editorial-layout.inverted {
    grid-template-columns: 1.2fr 0.8fr;
}

.editorial-text {
    padding-left: 50px;
}

/* --- Process Timeline --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 100px;
}

.process-step { border-left: 1px solid var(--accent-dim); padding-left: 30px; transition: 0.5s; }
.process-step:hover { border-left-color: var(--accent); }
.process-step span { color: var(--accent); font-size: 0.9rem; font-weight: 700; display: block; margin-bottom: 20px; }
.process-step h4 { font-size: 1.8rem; margin-bottom: 20px; }

/* --- Footer --- */

footer {
    padding: 160px 0 80px;
    background: #020202;
    border-top: 1px solid var(--border);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 5vw;
}

.footer-col h4 {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 40px;
}

.footer-col a, .footer-col p {
    display: block;
    margin-bottom: 20px;
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-col a:hover {
    color: white;
    transform: translateX(10px);
}

.footer-socials {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.footer-socials a {
    font-size: 0.75rem;
    letter-spacing: 2px;
    opacity: 0.3;
}

.footer-bottom {
    margin-top: 140px;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.02);
    display: flex;
    justify-content: space-between;
    opacity: 0.8;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* --- Animations --- */

[data-reveal] {
    opacity: 0;
    transform: translateY(80px);
    transition: var(--transition);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Sectors & Services --- */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px clamp(30px, 4vw, 60px);
    margin-bottom: 150px;
}

.sector-item {
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.sector-item:hover {
    transform: translateY(-10px);
}

.sector-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 35px;
    opacity: 0.8;
}

.sector-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1;
}

.sector-item h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.sector-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.6;
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: flex-start;
    padding-top: 100px;
    border-top: 1px solid var(--border);
}

.services-intro h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.services-list {
    display: flex;
    flex-direction: column;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.service-row:hover {
    padding-left: 20px;
    color: var(--accent);
}

.service-info {
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.service-number {
    font-size: 0.75rem;
    opacity: 0.4;
    font-weight: 700;
}

.service-name {
    font-size: 2.2rem;
    letter-spacing: -1px;
}

.service-arrow {
    font-size: 1.5rem;
    opacity: 0.4;
    transition: 0.4s;
}

.service-row:hover .service-arrow {
    transform: translate(10px, 10px);
    opacity: 1;
}

/* --- Responsive Logic --- */
@media (max-width: 1400px) {
    .container { max-width: 1250px; }
    .hero-text h1 { font-size: 8vw; }
}

/* Adaptive Header Switch: Show menu earlier for iPad/Laptop comfort */
@media (max-width: 1200px) {
    .mobile-toggle { display: flex; }
    .nav-links { display: none; }
    
    .hero-content { 
        grid-template-columns: 1fr !important; 
        text-align: center; 
        gap: 50px; 
    }
    
    .hero-text { 
        padding-right: 0 !important; 
        margin-bottom: 40px;
    }
    
    .hero-text h1 { font-size: clamp(3.5rem, 10vw, 6rem); }
    .hero-text p { margin: 0 auto 30px; font-size: 1.2rem; }
    
    .hero-glass-form { 
        margin: 0 auto; 
        max-width: 100%; 
        width: 100%; 
        padding: 30px 20px; 
        opacity: 1 !important;
        transform: none !important;
    }
    
    .hero-text {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .full-height { 
        height: auto; 
        min-height: 100vh; 
        padding: 140px 0 80px; 
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .editorial-layout, .editorial-layout.inverted { grid-template-columns: 1fr; gap: 60px; }
    .editorial-text { padding-left: 0; }
    .dual-image-block { grid-template-columns: 1fr; gap: 40px; }
    .image-card { height: 500px; }
    .logo-strip { flex-wrap: wrap; gap: 30px; justify-content: center; }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .services-layout { grid-template-columns: 1fr; gap: 60px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    section { padding: 100px 0; } /* Slightly more space for breathing */
    
    .hero-text h1 { 
        font-size: clamp(3rem, 15vw, 4.5rem); 
        margin-bottom: 30px;
    }
    
    .hero-text p { 
        font-size: 1.15rem; 
        line-height: 1.4;
    }
    
    .hero-glass-form { 
        padding: 40px 25px; 
        margin-top: 40px;
    }

    /* Prevent mobile zoom on focus */
    input, textarea, select { font-size: 16px !important; }

    .stats-grid { grid-template-columns: 1fr; gap: 40px; }
    .stat-item h2 { font-size: 3.5rem; }
    
    .process-grid { grid-template-columns: 1fr; }
    h2.accent-font { font-size: clamp(2.5rem, 10vw, 3.5rem) !important; }
    
    .image-card { height: 450px; }
    .dual-image-block { margin-bottom: 80px !important; }
    .image-card[style*="margin-top"] { margin-top: 0 !important; }

    /* Logo Marquee for Mobile */
    .logo-strip {
        display: block;
        overflow: hidden;
        white-space: nowrap;
        padding: 40px 0;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }
    
    .logo-strip-inner {
        display: inline-block;
        animation: marquee 20s linear infinite;
    }
    
    .logo-strip span {
        display: inline-block;
        margin-right: 50px;
    }

    .sectors-grid { grid-template-columns: 1fr; margin-bottom: 80px; }
    .services-intro h2 { font-size: clamp(2rem, 8vw, 3rem); }
    .service-name { font-size: 1.8rem; }
    
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { 
        flex-direction: column; 
        gap: 30px; 
        text-align: center; 
        opacity: 0.8;
    }
}

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


/* --- Responsive --- */

/* --- Logo Strip --- */
.logo-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.2;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    filter: grayscale(1) invert(1);
}

.logo-strip span {
    font-size: 0.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 700;
}

/* --- Magnetic Text container --- */


/* --- Exclusivity Badge --- */
.exclusivity-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(201, 168, 106, 0.1);
    border: 1px solid var(--accent-dim);
    border-radius: 100px;
    color: var(--accent);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: dotPulse 2s infinite;
}

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

/* --- Floating Mobile Actions --- */
.mobile-actions {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 4%;
    right: 4%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 10px;
    z-index: 999;
    justify-content: space-between;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.action-btn svg {
    width: 18px;
    height: 18px;
}

.wa-btn {
    background: #25D366;
    color: #fff;
}

.call-btn {
    background: var(--accent);
    color: #000;
}

.action-btn:active {
    transform: scale(0.95);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .mobile-actions { display: flex; }
    footer { padding-bottom: 120px !important; } /* Space for floating bar */
}

/* --- End of Stylesheet --- */
