/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (min-width: 769px) {
    * {
        cursor: none;
    }
}

:root {
    --primary: #6366f1;      /* Indigo */
    --secondary: #ec4899;    /* Pink */
    --gradient: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border: rgba(255, 255, 255, 0.1);
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Custom Cursor - Desktop Only */
@media (min-width: 769px) {
    .custom-cursor {
        width: 10px;
        height: 10px;
        background: var(--primary);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        mix-blend-mode: difference;
    }

    .cursor-follower {
        width: 30px;
        height: 30px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9998;
        transition: all 0.1s ease;
    }
}

@media (max-width: 768px) {
    .custom-cursor,
    .cursor-follower {
        display: none !important;
    }
    
    * {
        cursor: auto !important;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 0;
    mix-blend-mode: difference;
    transition: transform 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 120px;
    height: auto;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.menu-trigger {
    display: none !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0px);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.hero-content {
    text-align: center;
    z-index: 10;
}

.hero-title {
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    animation: titleReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation-delay: 0.5s;
    transform: translateY(100%);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes titleReveal {
    to {
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.2s;
    transform: translateY(20px);
}

.cta-button {
    display: inline-block;
    position: relative;
    padding: 20px 50px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.button-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: -1;
}

.cta-button:hover .button-bg {
    transform: scaleX(1);
}

.cta-button:hover {
    border-color: transparent;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-indicator span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--gradient);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    to {
        transform: translateY(60px);
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Trusted By Section */
.trusted-section {
    padding: 40px 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.trusted-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.trusted-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    white-space: nowrap;
    padding-left: 60px;
}

.logo-track {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.logo-track::before,
.logo-track::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.logo-track::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-darker) 0%, transparent 100%);
}

.logo-track::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-darker) 0%, transparent 100%);
}

.logo-slider {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll 20s linear infinite;
}

@media (max-width: 768px) {
    .logo-slider {
        gap: 50px;
        animation: scroll 15s linear infinite;
    }
}

.client-logo {
    height: 30px;
    width: auto;
    opacity: 0.4;
    filter: invert(1) grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo:hover {
    opacity: 0.8;
    filter: invert(1) grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Manifesto Section */
.manifesto {
    padding: 150px 0;
    background: var(--bg-dark);
}

.manifesto-text {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 300;
    line-height: 1.3;
    text-align: center;
}

.reveal-text {
    display: block;
    opacity: 0;
    transform: translateY(30px);
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.section-number {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Work Section - Redesigned as Slider */
.work {
    padding: 150px 0;
    background: var(--bg-dark);
}

.work-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.work-slider {
    position: relative;
    overflow: hidden;
}

.work-slide {
    display: none;
    animation: slideIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.work-slide.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.slide-video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-darker);
    aspect-ratio: 16/9;
}

.slide-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile-specific video handling */
@media (max-width: 768px) {
    .slide-video-container video {
        pointer-events: auto;
    }
}

.slide-video-container .sound-toggle {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slide-video-container:hover .sound-toggle {
    background: var(--gradient);
    border-color: transparent;
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.video-duration i {
    font-size: 12px;
}

.slide-info {
    padding-right: 40px;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.brand-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: invert(1);
    opacity: 0.9;
}

.brand-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
}

.project-type {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-title {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.slide-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.slider-arrow {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.slider-arrow:hover {
    background: var(--gradient);
    border-color: transparent;
    transform: scale(1.1);
}

.slider-arrow:hover i {
    transform: translateX(3px);
}

.slider-arrow.prev:hover i {
    transform: translateX(-3px);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 40px;
    border-radius: 20px;
    background: var(--gradient);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Services Section */
.services {
    padding: 150px 0;
    background: var(--bg-darker);
}

.services-list {
    display: grid;
    gap: 1px;
    background: var(--border);
}

.service-item {
    background: var(--bg-darker);
    padding: 60px;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 40px;
    align-items: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(99, 102, 241, 0.05);
}

.service-number {
    font-size: 18px;
    color: var(--text-secondary);
}

.service-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.service-tags span {
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
}

/* About Section */
.about {
    padding: 150px 0;
    background: var(--bg-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}

.about-title .line {
    display: block;
}

.about-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.about-stats {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

/* Contact Section with Form */
.contact {
    padding: 150px 0;
    background: var(--bg-darker);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact-content {
    padding-top: 40px;
}

.contact-title {
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 40px;
}

.contact-title .line {
    display: block;
}

.contact-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 80px;
    max-width: 600px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
}

.link-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.link-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
}

.contact-link:hover .link-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Quote Form */
.quote-form-container {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 50px;
    position: relative;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

.form-group label {
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--text-secondary);
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -20px;
    font-size: 12px;
    color: var(--primary);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 9L2 5h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 20px;
}

.form-group select option {
    background: var(--bg-darker);
}

.form-submit-btn {
    background: var(--gradient);
    color: var(--text-primary);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.form-submit-btn i {
    transition: transform 0.3s ease;
}

.form-submit-btn:hover i {
    transform: translateX(5px);
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}

.form-success.show {
    display: block;
}

.form-success i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.form-success h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-secondary);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    color: var(--text-secondary);
}

.footer-right {
    display: flex;
    gap: 40px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--text-primary);
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.video-modal {
    padding: 0;
    max-width: 1200px;
    width: 80%;
    background: #000;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.meeting-modal {
    max-width: 800px;
    text-align: center;
}

.modal-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--gradient);
    transform: rotate(90deg);
}

/* Magnetic Button Effect */
.magnetic {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .slide-info {
        padding: 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .service-tags {
        margin-top: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100% !important;
        position: relative !important;
    }
    
    body {
        overflow-x: hidden !important;
    }
    
    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .contact-title {
        font-size: 42px;
    }
    
    .slide-title {
        font-size: 28px;
    }
    
    .slide-description {
        font-size: 16px;
    }
    
    .slide-stats {
        gap: 20px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .slider-nav {
        gap: 20px;
    }
    
    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .manifesto,
    .work,
    .services,
    .about,
    .contact {
        padding: 80px 0;
    }
    
    .trusted-container {
        gap: 30px;
    }
    
    .trusted-label {
        padding-left: 20px;
        font-size: 12px;
    }
    
    .client-logo {
        height: 20px;
    }
    
    .quote-form-container {
        padding: 30px 20px;
    }
    
    .video-modal {
        width: 95%;
    }
    
    /* Prevent horizontal scroll */
    section, div, * {
        max-width: 100vw !important;
    }
    
    .brand-header {
        flex-direction: column;
        text-align: center;
    }
    
    .brand-logo {
        width: 40px;
        height: 40px;
    }
}