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

:root {
    --primary-red: rgb(231, 76, 60);
    --primary-orange: #e67e22;
    --dark-text: rgb(37, 34, 41);
    --light-text: #7f8c8d;
    --light-bg: #f8f9fa;
    --tan-bg: #F5F1E8;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 36px;
    --max-width: 1200px;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Unbounded', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    background: var(--tan-bg);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent !important;
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.nav-brand a {
    display: flex;
}

.nav-brand .logo {
    width: 70px;
    height: auto;
}

.nav-menu {
    display: flex;
    gap: 0;
    padding: 0.75rem 1rem .75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    width: 100%;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-center {
    display: flex;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.05em;
    display: flex;
}

.contact-button {
    background: var(--dark-text);
    border-radius: 36px;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
    color: var(--primary-red) !important;
}

.nav-mobile {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.logo-mobile {
    display: none;
    max-width: 80px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger to X transformation */
.nav-menu.active~.nav-mobile .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-menu.active~.nav-mobile .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-menu.active~.nav-mobile .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 120px 2rem 2rem;
    background: var(--dark-text);
    /* Dark background instead of image */
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    margin: 0 auto;
    margin-top: 4rem;
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    position: relative;
    display: inline-block;
}

.cta-button {
    background: rgba(37, 34, 41, 0.95);
    color: var(--light-bg);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: rgba(37, 34, 41, 1);
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background: #F5F1E8;
}

.services-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.services-header-left {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 500;
    color: var(--dark-text);
    margin: 0;
}

.view-all-btn {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: .75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: #E8E4D9;
    padding: 2.5rem;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(37, 34, 41, 0.90);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(232, 228, 218, 0.3);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:
        2px 4px 0 rgba(171, 167, 157, 0.3),
        2px 8px 12px rgba(171, 167, 157, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.15s ease;
}

/* Glass highlight */
.service-icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.25) 0%,
            transparent 100%);
    border-radius: 20px 20px 0 0;
}

.service-icon-box:hover {
    transform: translateY(2px);
    box-shadow:
        0 2px 0 rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.service-icon-box:active {
    transform: translateY(4px);
    box-shadow:
        0 0 0 rgba(0, 0, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.service-icon-box img,
.service-icon-box svg {
    width: 40px;
    height: 40px;
    z-index: 1;
    position: relative;
}

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.service-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.service-link {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.service-link:hover {
    color: var(--primary-red);
}

/* Brands Section */
.brands {
    padding: 4rem 2rem;
    background: var(--tan-bg);
    text-align: center;
}

.brands-header {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-label {
    color: var(--primary-red);
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    display: block;
    border-radius: 36px;
    background: rgba(232, 228, 218, 1);
    padding: .5rem 1rem;
    width: fit-content;
}

.brands-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
}

.brands-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.brand-logo {
    background: #E8E4DA;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    color: var(--light-text);
    font-weight: 500;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.brand-logo img {
    max-width: 130px;
    max-height: 40px;
}

/* Case Studies Section */
.case-studies {
    padding: 5rem 2rem;
    background: #F5F1E8;
}

.case-studies-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.case-studies-header {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.case-studies-header h2 {
    font-size: 3rem;
    font-weight: 500;
    color: var(--dark-text);
    margin-top: 0.5rem;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.case-study-card {
    background: #E8E4D9;
    padding: 2.5rem;
    border-radius: 24px;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.case-study-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-image img {
    width: 100%;
    height: auto;
}

.case-tag {
    display: inline-block;
    background: rgba(217, 90, 68, 0.1);
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.case-study-info .case-label {
    color: var(--primary-red);
}

.case-study-card h3 {
    font-size: 2rem;
    font-weight: 500;
    margin: .75rem 0 1rem 0;
    color: var(--dark-text);
}

.case-study-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.case-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Specialties Section */
.specialties {
    padding: 5rem 2rem;
    background: var(--dark-text);
}

.specialties-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.specialties-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.specialties-header .section-label {
    background: rgba(245, 241, 232, 0.1);
}

.specialties-header h2 {
    font-size: 3rem;
    font-weight: 500;
    color: var(--tan-bg);
    margin-top: 0.5rem;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.specialty-card {
    background: rgba(245, 241, 232, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(245, 241, 232, 0.1);
    transition: transform 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-5px);
    background: rgba(245, 241, 232, 0.08);
}

.specialty-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.specialty-card h4 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--tan-bg);
    margin-bottom: 1rem;
}

.specialty-card p {
    color: rgba(245, 241, 232, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.specialty-card.large {
    grid-column: span 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.specialty-content {
    flex: 1;
}

.specialty-highlight {
    flex: 1;
    text-align: right;
}

.specialty-highlight h3 {
    font-size: 4rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 2rem;
    background: var(--dark-text);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.testimonials-container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-header h2 {
    font-size: 3rem;
    font-weight: 500;
    color: var(--light-text);
    margin-top: 0.5rem;
}

.testimonials-bg-text {
    font-size: 10rem;
    font-weight: 700;
    color: rgba(232, 228, 218, 0.3);
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
}

.testimonial-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: var(--max-width);
}

.client-image {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.testimonial-text blockquote {
    font-size: 1.75rem;
    line-height: 1.6;
    color: var(--light-bg);
    margin-bottom: 1rem;
    font-weight: 400;
}

.testimonial-description {
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    font-style: normal;
    color: var(--light-text);
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-text);
}

.author-title {
    font-size: 0.9rem;
    color: var(--light-text);
}

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

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.75);
}

.nav-dot.active {
    background: var(--primary-red);
}

/* Pricing Section */
.pricing {
    padding: 5rem 2rem;
    background: #F5F1E8;
}

.pricing-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-header h2 {
    font-size: 3rem;
    font-weight: 500;
    color: var(--dark-text);
    margin-top: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.pricing-card {
    background: #E8E4D9;
    padding: 2.5rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-header-content {
    margin-bottom: 1.5rem;
}

.pricing-card h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.pricing-subheadline {
    font-size: 1rem;
    color: #666;
    margin: 0;
    font-weight: 400;
}

.pricing-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    color: #666;
    font-size: 0.95rem;
    position: relative;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d95a44;
    font-weight: 600;
}

.pricing-best-for {
    margin-bottom: 2rem;
}

.pricing-best-for h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.best-for-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.best-for-list li {
    background: rgba(231, 76, 60, .25);
    color: var(--dark-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.pricing-btn {
    width: 100%;
    background: #2c2c2c;
    color: var(--white);
    border: none;
    padding: 1.1rem;
    border-radius: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    font-size: 1rem;
    text-align: center;
    margin-top: auto;
}

.pricing-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: var(--dark-text);
}

.contact-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    font-size: 6rem;
    font-weight: 700;
    color: var(--tan-bg);
    line-height: 1.1;
}

.contact-text .highlight {
    color: var(--primary-red);
}

.contact-form-container {
    flex: 1;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

/* Form Success Message */
.form-success-message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 10;
}

.form-success-message.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.form-success-message svg {
    width: 64px;
    height: 64px;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.form-success-message h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.form-success-message p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: var(--dark-text);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--dark-text);
    padding: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-brand .logo {
    width: 50px;
    height: auto;
}

.footer-info {
    display: flex;
    gap: 2rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Mobile Header */
    .header {
        padding: 0.5rem 1rem;
    }

    .nav {
        padding: 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(37, 34, 41, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 7rem 2rem 2rem;
        border-radius: 0;
        gap: 0;
        justify-content: flex-start;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-brand {
        position: fixed;
        top: 1rem;
        left: 1rem;
        z-index: 1001;
        padding: 0.5rem 1rem;
    }

    .nav-brand .logo {
        width: auto;
        height: 40px;
    }

    .nav-center {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-link {
        color: var(--tan-bg) !important;
        font-size: 1.5rem;
        padding: 1rem;
        width: 100%;
        justify-content: center;
        border-bottom: 1px solid rgba(245, 241, 232, 0.1);
    }

    .contact-button {
        background: transparent;
        width: 100%;
        margin-top: 1rem;
    }

    .contact-btn {
        background: var(--primary-red) !important;
        color: var(--white) !important;
        display: block;
        text-align: center;
        padding: 1rem 2rem !important;
        border-radius: 36px;
    }

    .nav-mobile {
        background: rgba(37, 34, 41, .85);
        display: flex;
        padding: .75rem 2rem;
        border-radius: 36px;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .nav-toggle {
        display: flex;
        z-index: 1002;
        padding: 0.75rem;
        border-radius: 8px;
    }

    .logo-mobile {
        display: flex;
    }

    .nav-toggle span {
        background: var(--tan-bg);
    }

    .cta-button {
        background-color: var(--primary-red);
    }

    /* Services Section Slider */
    .services {
        padding: 3rem 0;
    }

    .services-container {
        padding: 0 1rem;
    }

    .services-header {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .services-header-left {
        flex-direction: column;
        text-align: center;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 1rem;
        padding: 0 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        flex: 0 0 calc(100% - 3rem);
        scroll-snap-align: start;
        min-width: calc(100% - 3rem);
        padding: 1.25rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    /* Brands Section */
    .brands {
        padding: 3rem 1rem;
    }

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

    .brands-logos>.brand-logo:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
        width: 50%;
    }

    .brand-logo {
        min-width: auto;
        padding: 1rem;
    }

    .brand-logo img {
        max-width: 100px;
        max-height: 50px;
    }

    /* Case Studies Slider */
    .case-studies {
        padding: 3rem 0;
    }

    .case-studies-container {
        padding: 0 1rem;
    }

    .case-studies-header {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .case-studies-header h2 {
        font-size: 2rem;
    }

    .case-studies-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 1rem;
        padding: 0 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .case-studies-grid::-webkit-scrollbar {
        display: none;
    }

    .case-study-card {
        flex: 0 0 calc(85% - 2rem);
        scroll-snap-align: start;
        min-width: calc(85% - 2rem);
        padding: 1.25rem;
    }

    .case-study-image {
        margin-bottom: 1rem;
    }

    .case-study-image img {
        border-radius: 12px;
    }

    .case-study-card h3 {
        font-size: 1rem;
        min-height: 52px;
    }

    .case-study-card p {
        font-size: .85rem;
    }

    /* Testimonials Section */
    .testimonials {
        padding: 4rem 1rem;
        background: var(--dark-text);
    }

    .testimonials-header h2 {
        font-size: 2rem;
    }

    .testimonials-bg-text {
        font-size: 10vw;
    }

    .testimonial-content {
        flex-direction: column;
        gap: 2rem;
    }

    .client-logo {
        font-size: 1.5rem;
    }

    .testimonial-text blockquote {
        font-size: 1.1rem;
    }

    .client-image {
        display: none;
    }

    /* Pricing Section */
    .pricing {
        padding: 3rem 1rem;
    }

    .pricing-header h2 {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 1.75rem;
    }

    .pricing-card h3 {
        font-size: 1.5rem;
    }

    .pricing-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .pricing-features {
        margin-bottom: 1.5rem;
    }

    .features li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        font-size: 0.85rem;
    }

    .pricing-best-for {
        margin-bottom: 1.5rem;
    }

    .best-for-list li {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .pricing-btn {
        padding: 0.9rem;
        font-size: 0.95rem;
    }

    /* Specialties Section */
    .specialties {
        padding: 3rem 1rem;
    }

    .specialties-header h2 {
        font-size: 2rem;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
    }

    .specialty-card.large {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        grid-column: span 1;
    }

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

    /* Contact Section */
    .contact {
        padding: 3rem 1rem;
    }

    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-text h2 {
        font-size: 5rem;
        text-align: center;
    }

    .contact-form-container {
        padding: 2rem;
        width: 100%;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero {
        padding: 100px 1rem 2rem;
    }

    .section-label {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    /* Brands - 2 columns on very small screens */
    .brands-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-stats {
        flex-direction: row;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .stat-label {
        font-size: .75rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --shadow: 0 0 0 2px #000;
    }
}

/* Print Styles */
@media print {

    .nav,
    .contact-form-container {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* ============================================
   HERO SECTION ANIMATIONS
   ============================================ */

/* Blinds overlay effect */
.hero-blinds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
    pointer-events: none;
    -webkit-perspective: 2000px;
    perspective: 2000px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

/* Desktop blinds - horizontal layout (default) */
.hero-blinds-desktop {
    display: flex;
    flex-direction: row;
}

/* Mobile blinds - hidden by default, shown on mobile */
.hero-blinds-mobile {
    display: none;
}

.blind {
    flex: 1;
    background-image: url('img/hero-desktop.jpg');
    background-size: 800% 125%;
    background-position: center;
    background-repeat: no-repeat;
    transform-origin: center;
    position: relative;
    transform: rotateY(90deg);
    -webkit-transform: rotateY(90deg);
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

/* Position each blind to show the correct part of the image */
.blind:nth-child(1) {
    background-position-x: 0%;
}

.blind:nth-child(2) {
    background-position-x: 14.28%;
}

.blind:nth-child(3) {
    background-position-x: 28.56%;
}

.blind:nth-child(4) {
    background-position-x: 42.84%;
}

.blind:nth-child(5) {
    background-position-x: 57.12%;
}

.blind:nth-child(6) {
    background-position-x: 71.4%;
}

.blind:nth-child(7) {
    background-position-x: 85.68%;
}

.blind:nth-child(8) {
    background-position-x: 100%;
}

/* Hide elements initially - GSAP will reveal them */
.hero-title,
.hero-subtitle,
.cta-button {
    opacity: 0;
}

/* Ensure hero content stays on top */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Fallback for users with reduced motion preference or if GSAP fails */
@media (prefers-reduced-motion: reduce) {

    .hero-title,
    .hero-subtitle,
    .cta-button {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-blinds-desktop,
    .hero-blinds-mobile {
        display: none;
    }

    .hero {
        background-image: url('img/hero-desktop.jpg');
        background-size: cover;
        background-position: center;
    }

    @media (max-width: 768px) {
        .hero {
            background-image: url('img/hero-mobile.jpg');
            background-size: cover;
            background-position: top center;
        }
    }
}

/* Show immediately if GSAP isn't working (after 2 seconds) */
@keyframes fadeInFallback {
    to {
        opacity: 1;
    }
}

html:not(.gsap-ready) .hero-title,
html:not(.gsap-ready) .hero-subtitle,
html:not(.gsap-ready) .cta-button {
    animation: fadeInFallback 0.5s ease forwards;
    animation-delay: 2s;
}

html:not(.gsap-ready) .hero-blinds-desktop,
html:not(.gsap-ready) .hero-blinds-mobile {
    display: none;
}

html:not(.gsap-ready) .hero {
    background-image: url('img/hero-desktop.jpg');
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    html:not(.gsap-ready) .hero {
        background-image: url('img/hero-mobile.jpg');
        background-size: cover;
        background-position: top center;
    }
}

/* Mobile - fewer blinds for performance */
@media (max-width: 768px) {

    /* Hide desktop blinds, show mobile blinds */
    .hero-blinds-desktop {
        display: none !important;
    }

    .hero-blinds-mobile {
        display: flex !important;
        flex-direction: column;
        /* Stack vertically */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 55vh;
        /* Image takes top 58% of viewport */
    }

    /* Mobile hero layout - stacked image and content */
    .hero {
        min-height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 0;
        background: var(--dark-text);
    }

    /* Content box at bottom */
    .hero-content {
        background: rgba(37, 34, 41, 0.95);
        /* Dark background for content box */
        padding: 3rem 1rem;
        margin: 0;
        margin-top: 55vh;
        /* Push content below image */
        position: relative;
        z-index: 3;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Mobile blinds - vertical strips */
    .hero-blinds-mobile .blind {
        flex: 1;
        background-image: url('img/hero-mobile.jpg');
        background-size: 110% 800%;
        /* Cover full width, height distributed across 4 blinds */
        background-position: center;
        background-repeat: no-repeat;
        transform-origin: top;
        position: relative;
        transform: rotateX(90deg);
        -webkit-transform: rotateX(90deg);
        /* Start rotated on X axis for vertical opening */
        opacity: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
        transform-style: preserve-3d;
        -webkit-transform-style: preserve-3d;
    }

    /* Position each blind to show the correct part of the image */
    .hero-blinds-mobile .blind:nth-child(1) {
        background-position-y: 0%;
    }

    .hero-blinds-mobile .blind:nth-child(2) {
        background-position-y: 14.29%;
    }

    .hero-blinds-mobile .blind:nth-child(3) {
        background-position-y: 28.57%;
    }

    .hero-blinds-mobile .blind:nth-child(4) {
        background-position-y: 42.86%;
    }

    .hero-blinds-mobile .blind:nth-child(5) {
        background-position-y: 57.14%;
    }

    .hero-blinds-mobile .blind:nth-child(6) {
        background-position-y: 71.43%;
    }

    .hero-blinds-mobile .blind:nth-child(7) {
        background-position-y: 85.71%;
    }

    .hero-blinds-mobile .blind:nth-child(8) {
        background-position-y: 100%;
    }
}