@font-face {
    font-family: 'Metropolis';
    src: url(/7cd3f1d98df090cb4d1e.otf) format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url(/f2ee8b6c1d3846833dc2.otf) format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url(/115d05df82ac7883b3d0.otf) format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url(/a6f94533926ecda3cec4.otf) format('opentype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --text-muted: #333333;
    --btn-bg: #f3f3f3;
    --btn-hover: #e5e5e8;
    --font-family: 'Metropolis', system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

button, input, textarea, select {
    font-family: inherit;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 100;
    transition: transform 0.6s ease;
}

.header.header-hidden {
    transform: translateY(-100%) !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.logo-text {
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: -0.04em;
}

.nav {
    display: flex;
    gap: 2.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav a:hover {
    opacity: 0.6;
}

.nav .arrow {
    font-size: 0.8rem;
    font-weight: 400;
}


/* Nav Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
    padding: 1rem 0; /* Expanded hit area */
}

.nav-dropdown-trigger {
    cursor: pointer;
}

.nav-dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 220px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 0.5rem;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.nav-dropdown-content a {
    color: #333 !important;
    padding: 0.75rem 1rem;
    display: block;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.nav-dropdown-content a:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #000 !important;
    opacity: 1;
    transform: translateX(4px);
}



.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-btn {
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
    color: var(--text-color);
}

.icon-btn:hover {
    background: var(--btn-bg);
}

#mobileMenuBtn {
    display: none;
}

.chat-btn, .book-btn {
    background-color: var(--btn-bg);
    color: var(--text-color);
    border: none;
    border-radius: 100px;
    padding: 0.8rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    font-family: inherit;
}

.chat-btn:hover, .book-btn:hover {
    background-color: var(--btn-hover);
}

.book-btn:active, .chat-btn:active {
    transform: scale(0.98);
}

/* Hero Section */
.hero-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
}
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    min-height: 0;
    padding: 5rem 2rem 5rem;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}
.hero-content {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.headline {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--text-color);
}

.book-btn {
    font-size: 1rem;
    padding: 1rem 1.8rem;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    width: 48px;
    height: 48px;
    background-color: var(--text-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.scroll-down:hover {
    transform: translateY(5px);
}

/* Marquee */
.marquee-container {
    padding-top: 1.5rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
    background-color: transparent;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-shrink: 0;
}

.marquee-content {
    display: inline-flex;
    gap: 2rem;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    animation: scroll-left 25s linear infinite;
    padding-right: 2rem;
    flex-shrink: 0;
}

.marquee-content .separator {
    color: #999999;
    font-weight: 400;
}

/* About Section */
.about-section {
    background-color: #e2e6ed;
    padding: 3rem 3rem 1.5rem;
}

.about-card {
    background-color: #ffffff;
    border-radius: 40px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
}

.about-left {
    display: flex;
    flex-direction: column;
}

.section-label {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-label .dot {
    font-size: 1.6rem;
    line-height: 0;
}

.video-card {
    background-color: #f0f0f2;
    border-radius: 24px;
    overflow: hidden;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-thumbnail {
    background-color: #000000;
    border-radius: 16px;
    aspect-ratio: 16 / 10;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.video-placeholder-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    position: absolute;
    margin-top: 4rem;
}

.play-btn {
    width: 64px;
    height: 64px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s;
}

.play-btn:hover {
    transform: scale(1.05);
}

.video-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.5rem 0.5rem;
    font-weight: 500;
    font-size: 1.05rem;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
}

.about-headline {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-color);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.about-btn {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 100px;
    padding: 1rem 1.8rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: opacity 0.2s, transform 0.2s;
    font-family: inherit;
    margin-top: 1rem;
}

.about-btn:hover {
    opacity: 0.8;
}

.about-btn:active {
    transform: scale(0.98);
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

.spin-logo {
    animation: spinSlow 12s linear infinite;
    transform-origin: center;
}

/* Work Section */
.work-section {
    background-color: #e2e6ed;
    padding: 1.5rem 3rem;
}

.work-header {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    margin-bottom: 3rem;
    align-items: start;
}

.work-headline {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-color);
}

.work-list {
    width: 100%;
}

.work-card {
    background-color: #ffffff;
    border-radius: 40px;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.work-item {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: stretch;
    height: 480px;
}

.work-item.reverse {
    grid-template-columns: 1.4fr 1fr;
}

.work-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.work-meta {
    font-size: 1.25rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.work-meta .dot {
    font-size: 1.6rem;
    line-height: 0;
}

.work-title {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}

.work-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.work-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 0;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888888;
    font-weight: 600;
    line-height: 1.4;
}

.explore-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

.explore-link:hover {
    opacity: 0.7;
}

.work-image {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
}

/* Clients Section */
.clients-section {
    background-color: #e2e6ed;
    padding: 1.5rem 3rem;
}

.clients-card {
    background-color: #ffffff;
    border-radius: 40px;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.clients-header {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    margin-bottom: 6rem;
    align-items: start;
}

.clients-headline {
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--text-color);
}

.clients-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
}

.clients-marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

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

.clients-marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: #999999;
    animation: scroll-left 20s linear infinite;
    padding-right: 3rem; /* to match gap */
    flex-shrink: 0;
}

.logo-separator {
    font-size: 0.8rem;
    color: #cccccc;
}

/* Services Section */
.services-section {
    background-color: #e2e6ed;
    padding: 1.5rem 3rem;
}

.services-card {
    background-color: #ffffff;
    border-radius: 40px;
    padding: 4rem;
    display: flex;
    flex-direction: column;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    margin-bottom: 4rem;
    align-items: start;
}

.services-headline {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-color);
}

.services-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    padding: 1rem 2rem;
    margin: 0 -2rem;
    text-decoration: none;
    color: var(--text-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s, border-color 0.3s, border-radius 0.3s;
}

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

.service-item:hover {
    background-color: #e2e6ed;
    border-radius: 16px;
    border-bottom-color: transparent;
}

.service-num {
    font-size: 1.2rem;
    font-weight: 500;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-name {
    font-size: 1.8rem;
    font-weight: 400;
}

.service-arrow {
    font-size: 1.5rem;
    font-weight: 400;
}

.services-footer {
    display: flex;
    justify-content: center;
}

.all-services-btn {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 40px;
    padding: 1rem 2.5rem;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
}

.all-services-btn:hover {
    opacity: 0.8;
}

/* FAQ Section */
.faq-section {
    background-color: #e2e6ed;
    padding: 1.5rem 3rem;
}

.faq-card {
    background-color: #ffffff;
    border-radius: 40px;
    padding: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
}

.faq-right {
    margin-top: -2rem;
    margin-bottom: -2rem;
}

.faq-headline {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-color);
    margin-top: 4rem;
}

.faq-item {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    margin: 0 -2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s, border-radius 0.3s;
}

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

.faq-item.active {
    background-color: #e2e6ed;
    border-radius: 20px;
    border-bottom-color: transparent;
}

.faq-num {
    font-size: 1.1rem;
    font-weight: 500;
    width: 3rem;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.faq-content {
    flex-grow: 1;
    padding-right: 2rem;
}

.faq-question {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-color);
}

.faq-answer {
    display: none;
    margin-top: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--text-color);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-toggle {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: none;
    background-color: #f4f4f6;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.3s, color 0.3s;
}

.faq-item.active .faq-toggle {
    background-color: #000000;
    color: #ffffff;
}

.testimonials-label {
    padding-left: 3rem;
    margin-bottom: 3rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #e2e6ed;
    padding: 1.5rem 0;
    overflow: hidden;
    display: none !important;
}

.testimonials-carousel {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 3rem;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
}
.testimonials-carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    padding-left: 3rem;
    width: max-content;
}

.testimonial-track::after {
    content: "";
    width: 1rem; /* 1rem width + 2rem gap = 3rem space after the last card */
    display: block;
    flex-shrink: 0;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 32px;
    padding: 2rem;
    width: 480px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-snap-align: start;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--text-color);
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 500;
    font-size: 1.15rem;
}

.testimonial-title {
    font-size: 0.95rem;
    color: #555555;
    margin-top: 0.2rem;
}

.linkedin-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.linkedin-btn:hover {
    background-color: #f0f2f5;
}

/* Controls */
.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 3rem 0;
}

.progress-bar-container {
    flex-grow: 1;
    height: 3px;
    background-color: rgba(0,0,0,0.1);
    margin-right: 4rem;
    position: relative;
    border-radius: 2px;
}

.progress-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #000000;
    width: 20%;
    border-radius: 2px;
    transition: transform 0.1s ease-out;
}

.nav-buttons {
    display: flex;
    gap: 1.5rem;
}

.nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #ffffff;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
}

.nav-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Contact Section */
.contact-section {
    background-color: #e2e6ed;
    padding: 1.5rem 3rem 0;
}

.contact-header {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    margin-bottom: 3rem;
    align-items: start;
}

.contact-headline-top {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-color);
}

.contact-card {
    background-color: #ffffff;
    border-radius: 40px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
}

.contact-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-badge {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 0.95rem;
    color: #999999;
    margin-bottom: 2.5rem;
}

.contact-headline {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.contact-testimonials {
    font-weight: 500;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    display: none !important;
}

.testimonial-logos {
    display: flex;
    gap: 1rem;
}

.t-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group textarea {
    font-family: inherit;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    padding: 0.2rem 0 0.8rem 0;
    font-size: 0.95rem;
    color: var(--text-color);
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cccccc;
}
.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #000000;
}

.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.pill-btn {
    font-family: inherit;
    padding: 0.7rem 1.4rem;
    border: 1px solid #e5e5e5;
    border-radius: 30px;
    background: transparent;
    font-size: 0.9rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s;
}

.pill-btn:hover,
.pill-btn.active {
    border-color: #000000;
    background-color: #000000;
    color: #ffffff;
}

.submit-btn {
    font-family: inherit;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 40px;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s;
}
.submit-btn:hover {
    background-color: #222222;
}

/* Footer Section */
.main-footer {
    background-color: #e2e6ed;
    padding: 4rem 3rem;
}

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

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.subscribe-column .footer-heading {
    font-weight: 500;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-links a,
.footer-links span.footer-non-link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.15rem;
    font-weight: 400;
    transition: opacity 0.3s;
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--text-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-links a:hover::after {
    width: 100%;
}

.subscribe-form {
    display: flex;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
}

.subscribe-form input {
    background: transparent;
    border: none;
    outline: none;
    flex-grow: 1;
    font-size: 1.05rem;
    font-family: inherit;
    color: var(--text-color);
}

.subscribe-form input::placeholder {
    color: #aaaaaa;
}

.subscribe-form button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.subscribe-disclaimer {
    font-size: 0.75rem;
    color: #888888;
    line-height: 1.5;
    margin-bottom: 3.5rem;
}

.subscribe-disclaimer u {
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}

.follow-heading {
    margin-bottom: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: rgba(0,0,0,0.05);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.4rem;
    font-weight: 400;
}

.eloqwnt-bars {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 30px;
}
.bar {
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(to bottom, #8bb4e7, #5983b6);
}
.bar-1 { height: 12px; opacity: 0.5; }
.bar-2 { height: 18px; opacity: 0.7; }
.bar-3 { height: 26px; }
.bar-4 { height: 18px; opacity: 0.7; }
.bar-5 { height: 12px; opacity: 0.5; }

.footer-copyright {
    font-size: 0.95rem;
    color: #888888;
}

.footer-copyright strong {
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
}

.scroll-top-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #000000;
    color: #ffffff;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.scroll-top-btn:hover {
    background-color: #222222;
    transform: translateY(-3px);
}
.scroll-top-btn svg {
    width: 24px;
    height: 24px;
}
/* Page Section (Sub-pages) */
.page-section {
    background-color: #e2e6ed;
    padding: 120px 3rem 0;
}

.page-card {
    background-color: #ffffff;
    border-radius: 40px;
    padding: 4rem;
    min-height: 50vh;
}

/* --- RESPONSIVE STYLES --- */
.mobile-menu-overlay {
    display: none;
}

@media (max-width: 1024px) {
    .header {
        padding: 0.75rem 2rem;
    }
    .nav {
        gap: 1.5rem;
    }
    .headline {
        font-size: 3.2rem;
    }
    .about-card, .work-card, .clients-card, .services-card, .faq-card, .contact-card {
        gap: 3rem;
        padding: 3rem;
    }
    .work-item {
        gap: 3rem;
        height: auto;
        min-height: 480px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.6rem 1rem;
    }
    .nav {
        display: none;
    }
    #mobileMenuBtn {
        display: flex;
    }

    .chat-btn {
        display: none;
    }
    .hero {
        padding: 5rem 1rem 5rem;
    }
    .hero-content {
        gap: 1rem;
    }
    .headline {
        font-size: 2.5rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .about-section, .work-section, .clients-section, .services-section, .faq-section, .contact-section {
        padding: 1rem;
    }
    .page-section {
        padding: 100px 1rem 1rem;
    }
    .about-card, .work-card, .clients-card, .services-card, .faq-card, .contact-card, .page-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 1.25rem;
        border-radius: 24px;
    }
    .work-card {
        background-color: transparent;
        padding: 0;
        gap: 1.5rem;
    }
    .about-header, .work-header, .clients-header, .services-header, .contact-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    .about-headline, .work-headline, .services-headline {
        font-size: 1.7rem;
    }
    .clients-headline {
        font-size: 1.35rem;
    }
    .work-item, .work-item.reverse {
        display: flex;
        flex-direction: column;
        gap: 0;
        height: auto;
        background-color: #ffffff;
        border-radius: 24px;
        padding: 1.25rem;
    }
    .work-content {
        display: contents;
    }
    .work-meta {
        order: 1;
        margin-bottom: 1rem;
    }
    .work-image {
        order: 2;
        height: 300px;
        margin-bottom: 1.5rem;
    }
    .work-title {
        order: 3;
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    .work-desc {
        order: 4;
        margin-bottom: 1.5rem;
    }
    .work-stats {
        order: 5;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    .explore-link {
        order: 6;
    }
    .service-item {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        padding: 1.25rem;
        margin: 0 -1.25rem;
    }
    .service-name {
        font-size: 1.25rem;
    }
    .faq-grid {
        display: block;
    }
    .faq-left {
        position: static;
        margin-bottom: 2rem;
    }
    .faq-right {
        margin-top: 0;
        margin-bottom: 0;
    }
    .faq-headline {
        font-size: 1.7rem;
        margin-top: 1.5rem;
    }
    .faq-item {
        padding: 1.25rem;
        margin: 0 -1.25rem;
    }
    .faq-question {
        font-size: 1.2rem;
    }
    .contact-headline-top, .contact-headline {
        font-size: 1.7rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-left {
        display: contents;
    }
    .contact-left > div:first-child {
        order: 1;
    }
    .contact-right {
        order: 2;
    }
    .contact-testimonials {
        order: 3;
    }
    .testimonials-section {
        padding: 1rem 0;
    }
    .testimonials-section .testimonials-label {
        padding-left: 1rem;
        margin-bottom: 2rem;
    }
    .testimonials-carousel {
        scroll-padding-left: 1rem;
    }
    .testimonial-track {
        padding-left: 1rem;
        gap: 1rem;
    }
    .testimonial-track::after {
        width: 1rem;
    }
    .testimonials-controls {
        padding: 2rem 1rem 0;
    }
    .progress-bar-container {
        margin-right: 1.5rem;
    }
    .testimonial-card {
        width: 300px;
        height: auto;
        min-height: 350px;
        padding: 1.5rem;
    }
    .testimonial-text {
        font-size: 1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 1rem;
        margin-bottom: 2rem;
    }
    .footer-column:nth-child(3),
    .footer-column:nth-child(4) {
        grid-column: 1 / -1;
    }
    .footer-links {
        gap: 0.4rem;
    }
    .footer-column:nth-child(3) .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem 1rem;
    }
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    .footer-links a,
    .footer-links span.footer-non-link {
        font-size: 0.9rem;
    }
    .main-footer {
        padding: 4rem 1rem 2rem;
    }
    .footer-bottom {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 1.5rem;
        align-items: center;
    }
    .footer-copyright {
        grid-column: 1 / -1;
        grid-row: 2;
        font-size: 0.85rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
        width: 100%;
    }
    .scroll-top-btn {
        grid-column: 2;
        grid-row: 1;
        width: 40px;
        height: 40px;
    }
    .scroll-top-btn svg {
        width: 20px;
        height: 20px;
    }
    .footer-logo svg {
        height: 35px !important;
    }
    .logo svg {
        height: 32px !important;
    }
    .icon-btn {
        width: 36px;
        height: 36px;
    }
    .icon-btn svg {
        width: 16px;
        height: 16px;
    }
    .marquee-content {
        font-size: 0.9rem;
    }
    .section-label {
        font-size: 1rem;
        margin-bottom: 0;
    }
    .about-text, .work-desc, .faq-answer {
        font-size: 1rem;
    }
    .stat-value {
        font-size: 1.5rem;
    }

    /* Mobile Menu Overlay Styles */
    .mobile-menu-overlay {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--bg-color);
        z-index: 9999;
        flex-direction: column;
        padding: 1.5rem;
        transform: translateY(-100%);
        transition: transform 0.6s ease, visibility 0s 0.6s;
        visibility: hidden;
    }
    .mobile-menu-overlay.active {
        transform: translateY(0);
        visibility: visible;
        transition: transform 0.6s ease, visibility 0s;
    }
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 3rem;
    }
    .mobile-menu-title {
        font-size: 1.05rem;
        font-weight: 500;
        color: var(--text-muted);
    }
    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .mobile-nav a {
        font-size: 1.05rem;
        font-weight: 500;
        text-decoration: none;
        color: var(--text-color);
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding: 1rem 0;
    }
    .mobile-nav a .arrow {
        font-size: 1rem;
        font-weight: 400;
        transform: rotate(-90deg);
    }
}



/* Language Switcher */
.lang-link {
    text-decoration: none;
    transition: color 0.2s;
}
.lang-link[data-active="true"] {
    color: #111;
}
.lang-link[data-active="false"] {
    color: #999;
}

/* Mobile Dropdown Refinements */
.mobile-dropdown-wrapper {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.mobile-dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-color);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.mobile-dropdown-toggle .arrow {
    transition: transform 0.3s;
}
.mobile-dropdown-toggle .arrow.active {
    transform: rotate(180deg);
}
.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    padding-left: 1rem;
    border-left: 2px solid #eaeaea;
    margin-left: 0.5rem;
    margin-bottom: 1rem;
}
.mobile-dropdown-content.active {
    display: flex;
}
@media (max-width: 768px) {
    .mobile-dropdown-content a {
        padding: 0.75rem 0;
        border-bottom: none;
        font-size: 0.95rem;
        color: var(--text-muted);
    }
    .mobile-nav a {
        border-bottom: 1px solid rgba(0,0,0,0.1); /* Ensure top level links still have border */
    }
    .mobile-dropdown-wrapper {
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
}

