@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary: #0A0F2C;
    --primary-dark: #050716;
    --primary-light: #161D44;
    --gold: #C9A84C;
    --gold-rgb: 201, 168, 76;
    --gold-light: #E5C56D;
    --neon: #00F5FF;
    --neon-rgb: 0, 245, 255;
    --neon-green: #3BFFB2;
    --white: #FFFFFF;
    --off-white: #F4F6FC;
    --text-dark: #0F141C;
    --text-muted-dark: #4A5568;
    --text-muted-light: #A0AEC0;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--primary-dark);
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--white);
    background-color: var(--primary-dark);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    animation: fadeInPage 0.8s ease-out forwards;
}

iframe,
video,
canvas,
svg {
    max-width: 100%;
}

@keyframes fadeInPage {
    to { opacity: 1; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border: 2px solid var(--primary-dark);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Helper Classes */
.text-gold { color: var(--gold); }
.text-neon { color: var(--neon); }
.text-center { text-align: center; }
.text-accent {
    font-family: var(--font-accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
}

/* Grid & Layout System */
.container {
    width: min(100%, var(--container-width));
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
}

.section-dark {
    background-color: var(--primary-dark);
}

.section-light {
    background-color: var(--white);
    color: var(--text-dark);
}
.section-light h1, .section-light h2, .section-light h3, .section-light h4 {
    color: var(--primary-dark);
}
.section-light p {
    color: var(--text-muted-dark);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
    border: none;
}

.btn-primary::before {
    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.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(201, 168, 76, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gold);
}

.btn-secondary:hover {
    background-color: rgba(201, 168, 76, 0.1);
    color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.15);
}

.btn-neon {
    background: linear-gradient(135deg, var(--neon) 0%, #007CFF 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 0 20px rgba(var(--neon-rgb), 0.4);
}

.btn-neon:hover {
    box-shadow: 0 0 35px rgba(var(--neon-rgb), 0.7);
    transform: translateY(-3px) scale(1.02);
}

/* Header & Sticky Glass Navbar */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.header-nav.scrolled {
    padding: 0.8rem 0;
    background: rgba(5, 7, 22, 0.8);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.logo img {
    height: 48px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

.nav-menu {
    display: flex;
    gap: 1.45rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 0.5rem 0;
}

@media (max-width: 1100px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--primary-dark);
        border-left: 1px solid rgba(201, 168, 76, 0.2);
        flex-direction: column;
        justify-content: center;
        gap: 2.25rem;
        z-index: 1005;
        transition: var(--transition-smooth);
        padding: 4rem;
    }

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

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--gold);
}

/* Hamburger Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1010;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

/* Hero Section with Grid Animations */
.hero-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, var(--primary-light) 0%, var(--primary-dark) 60%);
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.12;
    background-image: linear-gradient(var(--gold) 1px, transparent 1px),
                      linear-gradient(90deg, var(--gold) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    animation: gridFloat 30s linear infinite;
}

@keyframes gridFloat {
    0% { background-position: 0 0; }
    100% { background-position: 0 1000px; }
}

.hero-glow-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    filter: blur(50px);
}

.hero-glow-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--neon-rgb), 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    filter: blur(60px);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    border: 1px solid rgba(201, 168, 76, 0.4);
    background-color: rgba(201, 168, 76, 0.08);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.8rem);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.gold-shimmer {
    background: linear-gradient(90deg, var(--white) 0%, var(--gold-light) 30%, var(--gold) 50%, var(--gold-light) 70%, var(--white) 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: textShimmer 6s linear infinite;
}

@keyframes textShimmer {
    0% { background-position: 0% center; }
    100% { background-position: -200% center; }
}

.hero-sub {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 700px;
    line-height: 1.8;
}

.hero-sub strong {
    font-weight: 600;
    color: var(--gold-light);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Social Proof Bar */
.social-proof-bar {
    background-color: var(--primary-dark);
    padding: 4rem 0;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    position: relative;
    z-index: 20;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.social-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.social-label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted-light);
    text-transform: uppercase;
}

/* Key Benefits Card Section */
.section-title-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-title {
    font-size: clamp(2.15rem, 4vw, 3rem);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.glass-card {
    background: rgba(22, 29, 68, 0.35);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--border-radius-md);
    padding: 3rem 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(201, 168, 76, 0.1);
}

.glass-card:hover::before {
    opacity: 1;
}

.card-num {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 2.5rem;
    color: rgba(201, 168, 76, 0.15);
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    line-height: 1;
    transition: var(--transition-smooth);
}

.glass-card:hover .card-num {
    color: var(--gold);
    transform: scale(1.1);
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
}

.card-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* About / Story Section */
.image-reveal-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.image-reveal-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--primary-dark) 0%, transparent 40%);
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 1.2s ease-out;
}

.image-reveal-wrapper-portrait {
    aspect-ratio: 4 / 5;
    max-width: 480px;
    margin-left: auto;
}

.about-img-contain {
    height: 100%;
    object-fit: contain;
    background-color: var(--primary-dark);
}

.image-reveal-wrapper:hover .about-img {
    transform: scale(1.06);
}

/* Tools Logo Marquee */
.logo-marquee-section {
    padding: 2rem 0;
    background: var(--white);
    border-top: 1px solid rgba(10, 15, 44, 0.08);
    border-bottom: 1px solid rgba(10, 15, 44, 0.08);
    overflow: hidden;
}

.logo-marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.logo-marquee-track {
    display: flex;
    width: max-content;
    gap: 1.25rem;
    animation: logoMarquee 28s linear infinite;
}

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

.logo-marquee-item {
    flex: 0 0 180px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.4rem;
    border: 1px solid rgba(10, 15, 44, 0.08);
    border-radius: var(--border-radius-sm);
    background: rgba(244, 246, 252, 0.82);
    box-shadow: 0 10px 24px rgba(10, 15, 44, 0.04);
}

.logo-marquee-item img {
    max-width: 140px;
    max-height: 52px;
    object-fit: contain;
    filter: grayscale(1) saturate(0.85);
    opacity: 0.72;
    transition: var(--transition-smooth);
}

.logo-marquee-item:hover img {
    filter: grayscale(0) saturate(1);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes logoMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 0.625rem));
    }
}

.team-card {
    background-color: var(--primary-light);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    border-left: 4px solid var(--gold);
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateX(6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.team-title {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.team-name {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Testimonials Carousel */
.testimonials-section {
    background: radial-gradient(circle at 20% 80%, var(--primary-light) 0%, var(--primary-dark) 50%);
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 3rem;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 8rem;
    line-height: 1;
    color: rgba(201, 168, 76, 0.15);
    position: absolute;
    top: -3rem;
    left: 0;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    animation: fadeTestimonial 0.6s ease-in-out forwards;
}

.testimonial-slide.active {
    display: block;
}

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

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 2.5rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.testimonial-slide .testimonial-text:last-child {
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.author-name {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.author-role {
    font-size: 0.8rem;
    color: var(--gold-light);
    margin-top: 0.25rem;
}

/* Remote Work CTA Section */
.remote-work-section {
    background-color: var(--white);
    color: var(--text-dark);
}

.remote-work-section .section-title {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.remote-work-copy p {
    color: var(--text-muted-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.remote-work-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(10, 15, 44, 0.08);
    box-shadow: 0 24px 55px rgba(10, 15, 44, 0.18);
}

.remote-work-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.remote-work-image:hover img {
    transform: scale(1.05);
}

/* Contact Page */
.contact-centered-section {
    text-align: left;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
    justify-content: space-between;
}

.contact-centered-card {
    max-width: 680px;
}

.contact-centered-card .section-title {
    color: var(--primary-dark);
    font-size: clamp(2.5rem, 5vw, 4.1rem);
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
}

.contact-details-list {
    display: grid;
    gap: 1.4rem;
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(10, 15, 44, 0.08);
}

.contact-detail-icon {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    font-size: 1.25rem;
}

.contact-detail-item strong,
.contact-socials h4 {
    font-family: var(--font-accent);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: var(--gold);
    display: block;
    margin-bottom: 0.35rem;
}

.contact-detail-item p {
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 1.05rem;
    margin: 0;
}

.contact-phone-line {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
}

.whatsapp-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    width: fit-content;
    padding: 0.42rem 0.8rem 0.42rem 0.45rem;
    border: 1px solid rgba(37, 211, 102, 0.28);
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.12);
    color: #128C7E;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(18, 140, 126, 0.08);
}

.whatsapp-phone-link i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    font-size: 1.15rem;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.28);
}

.whatsapp-phone-link:hover {
    color: #128C7E;
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.48);
}

.whatsapp-phone-link:hover i {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.36);
}

.contact-socials .social-links {
    justify-content: flex-start;
    gap: 0.85rem;
    margin-top: 0.75rem;
}

.contact-socials .social-icon {
    width: 48px;
    height: 48px;
    border: 0;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 14px 28px rgba(10, 15, 44, 0.18);
}

.contact-socials .social-icon.social-youtube {
    background: #ff0033;
}

.contact-socials .social-icon.social-facebook {
    background: #1877f2;
}

.contact-socials .social-icon.social-instagram {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 100%);
}

.contact-socials .social-icon.social-threads {
    background: #10131f;
}

.contact-socials .social-icon:hover {
    color: var(--white);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 18px 34px rgba(10, 15, 44, 0.26);
}

.contact-london-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(10, 15, 44, 0.08);
    width: min(100%, 460px);
    margin-left: auto;
    box-shadow: 0 30px 70px rgba(10, 15, 44, 0.24);
    animation: londonCardLift 7s ease-in-out infinite;
}

.contact-london-image::before {
    content: '';
    position: absolute;
    inset: auto 10% -18% 10%;
    height: 30%;
    background: rgba(201, 168, 76, 0.24);
    filter: blur(28px);
    z-index: 1;
    pointer-events: none;
}

.contact-london-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(5, 7, 22, 0.34) 100%);
    z-index: 2;
    pointer-events: none;
}

.contact-london-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    animation: londonImagePan 11s ease-in-out infinite alternate;
}

.contact-london-image:hover img {
    transform: scale(1.05);
}

@keyframes londonCardLift {
    0%, 100% {
        box-shadow: 0 30px 70px rgba(10, 15, 44, 0.22);
    }
    50% {
        box-shadow: 0 38px 84px rgba(10, 15, 44, 0.28);
    }
}

@keyframes londonImagePan {
    0% {
        object-position: 50% 42%;
    }
    100% {
        object-position: 50% 58%;
    }
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-light);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* Styled Premium Sendiio Subscription Section */
.sendiio-wrapper {
    background: radial-gradient(circle at center, var(--primary-light) 0%, var(--primary-dark) 100%);
    padding: 6rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.05);
    position: relative;
    overflow: hidden;
}

.sendiio-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--neon-rgb), 0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* Injecting Custom Styles to Sendiio HTML markup */
#sendiio-subscription {
    width: 100% !important;
    font-family: var(--font-body) !important;
}

#sendiio-subscription form {
    max-width: 600px;
    margin: 0 auto;
}

#sendiio-subscription ul.formList {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#sendiio-subscription .sendiio-form-heading-h1 {
    font-family: var(--font-heading) !important;
    font-size: 3.2rem !important;
    color: var(--white) !important;
    text-align: center !important;
    margin-bottom: 0.75rem !important;
    font-weight: 600 !important;
}

#sendiio-subscription .sendiio-form-heading-subtitle {
    font-size: 1rem !important;
    color: var(--text-muted-light) !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
    line-height: 1.6 !important;
}

#sendiio-subscription label {
    font-family: var(--font-accent) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.12em !important;
    color: var(--gold) !important;
    display: block !important;
    margin-bottom: 0.6rem !important;
}

#sendiio-subscription input[type="text"],
#sendiio-subscription input[type="email"],
#sendiio-subscription input[type="number"] {
    width: 100% !important;
    background-color: var(--primary-dark) !important;
    border: 1px solid rgba(201, 168, 76, 0.3) !important;
    color: var(--white) !important;
    padding: 1.1rem 1.5rem !important;
    border-radius: var(--border-radius-sm) !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    transition: var(--transition-smooth) !important;
}

#sendiio-subscription input:focus {
    outline: none !important;
    border-color: var(--neon) !important;
    box-shadow: 0 0 15px rgba(var(--neon-rgb), 0.3) !important;
}

#sendiio-subscription p.sendiio-form-firstname-sublabel,
#sendiio-subscription p.sendiio-form-email-sublabel,
#sendiio-subscription p.sendiio-form-number-sublabel {
    font-size: 0.8rem !important;
    color: var(--text-muted-light) !important;
    margin-top: 0.4rem !important;
    font-style: italic !important;
}

#sendiio-subscription button.sendiio-form-submit-button {
    width: 100% !important;
    background: linear-gradient(135deg, var(--neon) 0%, #007CFF 100%) !important;
    color: var(--white) !important;
    font-family: var(--font-accent) !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    padding: 1.25rem !important;
    border: none !important;
    border-radius: var(--border-radius-sm) !important;
    cursor: pointer !important;
    transition: var(--transition-smooth) !important;
    box-shadow: 0 0 20px rgba(var(--neon-rgb), 0.4) !important;
}

#sendiio-subscription button.sendiio-form-submit-button:hover {
    box-shadow: 0 0 35px rgba(var(--neon-rgb), 0.7) !important;
    transform: translateY(-3px) scale(1.01) !important;
}

/* FAQ Accordion Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 1.5rem 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.4rem;
    color: var(--white);
    transition: var(--transition-smooth);
}

.faq-item:hover .faq-question h3 {
    color: var(--gold);
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--gold);
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.75);
    padding-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.final-cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(50px);
}

.final-cta-wrapper {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.final-cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

/* Social Media Section */
.social-media-section {
    background:
        linear-gradient(135deg, rgba(5, 7, 22, 0.96) 0%, rgba(10, 15, 44, 0.98) 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.social-media-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 3rem;
    align-items: center;
}

.social-media-copy {
    max-width: 680px;
}

.social-media-copy .section-title {
    margin-bottom: 1rem;
}

.social-media-copy p {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.05rem;
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.social-media-card {
    min-height: 118px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.035);
    color: var(--white);
}

.social-media-card i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold-light);
    font-size: 1.3rem;
}

.social-media-card span {
    font-family: var(--font-accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.social-media-card:hover {
    border-color: rgba(201, 168, 76, 0.58);
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(-4px);
}

.instagram-feed {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.instagram-feed-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.instagram-feed-heading h3 {
    font-size: 2.4rem;
    margin-top: 0.35rem;
}

.instagram-feed-heading a {
    flex: 0 0 auto;
    color: var(--gold-light);
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.instagram-feed-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.instagram-post-card {
    position: relative;
    aspect-ratio: 4 / 5;
    min-height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--primary-light);
    isolation: isolate;
    transform: translateY(0);
    animation: instagramFloat 7s ease-in-out infinite;
}

.instagram-post-card:nth-child(2) {
    animation-delay: 0.4s;
}

.instagram-post-card:nth-child(3) {
    animation-delay: 0.8s;
}

.instagram-post-card:nth-child(4) {
    animation-delay: 1.2s;
}

.instagram-post-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(5, 7, 22, 0.04) 0%, rgba(5, 7, 22, 0.88) 100%),
        linear-gradient(120deg, transparent 0%, rgba(229, 197, 109, 0.24) 45%, transparent 64%);
    background-size: 100% 100%, 220% 100%;
    background-position: center, -150% 0;
    transition: var(--transition-smooth);
}

.instagram-post-card::after {
    content: '';
    position: absolute;
    inset: 1rem;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--border-radius-sm);
    opacity: 0;
    transform: scale(0.96);
    transition: var(--transition-smooth);
}

.instagram-post-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-post-badge,
.instagram-post-cta {
    position: absolute;
    z-index: 3;
    left: 1.2rem;
    right: 1.2rem;
}

.instagram-post-badge {
    top: 1.2rem;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.65rem;
    border-radius: 999px;
    background: rgba(5, 7, 22, 0.76);
    color: var(--gold-light);
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.instagram-post-cta {
    bottom: 1.2rem;
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.instagram-post-card:hover {
    border-color: rgba(229, 197, 109, 0.58);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    animation-play-state: paused;
}

.instagram-post-card:hover::before {
    background-position: center, 150% 0;
}

.instagram-post-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.instagram-post-card:hover img {
    transform: scale(1.1);
}

/* Vertical Video Embeds */
.vertical-video-section {
    margin-top: 4.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vertical-video-heading {
    max-width: 680px;
    margin-bottom: 1.6rem;
}

.vertical-video-heading h3 {
    font-size: clamp(2rem, 3.4vw, 2.4rem);
    margin-top: 0.35rem;
}

.vertical-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: start;
    max-width: 980px;
    margin: 0 auto;
}

.vertical-video-card {
    position: relative;
    aspect-ratio: 9 / 16;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(201, 168, 76, 0.22);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.vertical-video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: inherit;
}

.vertical-video-card iframe {
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: block;
    border: 0;
}

@keyframes instagramFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Footer Styles */
.footer {
    background-color: var(--primary-dark);
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1.25rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-social-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 360px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 42px;
    padding: 0.65rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--text-muted-light);
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-social-link i {
    width: 18px;
    color: var(--gold);
    font-size: 1rem;
    text-align: center;
}

.footer-social-link:hover {
    border-color: rgba(201, 168, 76, 0.55);
    color: var(--white);
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(-2px);
}

.footer-title {
    font-family: var(--font-accent);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 1.75rem;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted-light);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-info p {
    font-size: 0.9rem;
    color: var(--text-muted-light);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-info p strong {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-muted-light);
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a:hover {
    color: var(--gold);
}

/* Animations Helper Classes (Intersection Observer) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .grid-4, .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.5rem;
    }
    .instagram-feed-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .vertical-video-grid {
        max-width: 860px;
        gap: 1rem;
    }
    .hero-title {
        font-size: 3.8rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3rem;
    }
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-title {
        font-size: clamp(2.25rem, 11vw, 3rem);
    }
    .hero-sub {
        font-size: 1.05rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .social-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
    .section {
        padding: 5rem 0;
    }
    .social-media-panel {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }
    .social-media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .instagram-feed-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .vertical-video-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 1.25rem;
    }
    .sendiio-wrapper {
        padding: 3rem 1.5rem;
    }
    .sendiio-wrapper form,
    .sendiio-wrapper input,
    .sendiio-wrapper textarea,
    .sendiio-wrapper button,
    .sendiio-wrapper .formList,
    .sendiio-wrapper li {
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    /* Hamburger Menu Actions */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--primary-dark);
        border-left: 1px solid rgba(201, 168, 76, 0.2);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        z-index: 1005;
        transition: var(--transition-smooth);
        padding: 4rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-brand {
        grid-column: 1;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-legal-links {
        justify-content: center;
    }
    .footer-social-links {
        grid-template-columns: 1fr;
        max-width: none;
    }
    .social-media-grid {
        grid-template-columns: 1fr;
    }
    .social-media-card {
        min-height: 92px;
    }
    .instagram-feed-heading {
        display: block;
    }
    .instagram-feed-heading h3 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    .instagram-feed-grid {
        grid-template-columns: 1fr;
    }
    .instagram-post-card,
    .instagram-post-card img {
        min-height: 260px;
    }
    .vertical-video-heading h3 {
        font-size: 2rem;
    }
    .vertical-video-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .remote-work-image {
        order: -1;
    }
    .contact-detail-item {
        flex-direction: column;
        text-align: center;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .contact-centered-section {
        text-align: center;
    }
    .contact-centered-card {
        max-width: none;
    }
    .contact-centered-card .section-title {
        font-size: 2.1rem;
    }
    .whatsapp-phone-link {
        margin: 0 auto;
    }
    .contact-phone-line,
    .contact-socials .social-links {
        justify-content: center;
    }
    .contact-london-image {
        width: min(100%, 420px);
        margin: 0 auto;
    }
    .contact-london-image img {
        aspect-ratio: 4 / 5;
    }
    .logo-marquee-section {
        padding: 1.5rem 0;
    }
    .logo-marquee-track {
        gap: 0.85rem;
        animation-duration: 22s;
    }
    .logo-marquee-item {
        flex-basis: 140px;
        height: 72px;
        padding: 0.85rem 1rem;
    }
    .logo-marquee-item img {
        max-width: 110px;
        max-height: 44px;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 0 1rem;
    }
    .section {
        padding: 4rem 0;
    }
    .hero-wrapper {
        min-height: auto;
        padding: 7.5rem 0 4rem;
    }
    .hero-title {
        font-size: clamp(2rem, 10.5vw, 2.65rem);
    }
    .section-title,
    .final-cta-title {
        font-size: clamp(1.9rem, 9vw, 2.35rem);
    }
    .btn {
        width: 100%;
        padding: 1rem 1.1rem;
        font-size: 0.74rem;
        white-space: normal;
        text-align: center;
        line-height: 1.35;
    }
    .grid-3,
    .grid-4,
    .social-proof-grid,
    .social-media-grid,
    .instagram-feed-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-container {
        padding: 0;
    }
    .quote-icon {
        font-size: 5rem;
    }
    .testimonial-text {
        font-size: 1.55rem;
    }
    .sendiio-wrapper {
        padding: 2.25rem 1rem;
        border-radius: var(--border-radius-sm);
    }
    .footer-legal-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}
