@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* Brand Package Page Specific Styles */

:root {
    --brand-blue: rgb(68, 131, 255); /* #4483FF */
    --text-dark: rgb(30, 30, 30);
    --bg-light: rgb(251, 251, 251);
    --bg-dark-section: rgb(53, 53, 53);
    --brand-green: rgb(71, 225, 148);
}

.brand-package-page {
    background-color: #b8b8b8;
}

.sticky-sidebar-blue-layer {
    grid-area: sidebar;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    pointer-events: none;
    z-index: 1 !important;
    min-width: 60px;
    position: relative;
    right: -40px !important;
}

body.services-page .sticky-sidebar-blue-layer {
    right: -40px !important;
    z-index: 1 !important;
}

.sticky-sidebar-blue {
    position: sticky;
    top: 64px;
    margin-right: 0;
    pointer-events: auto;
    height: fit-content;
    background: var(--brand-blue);
    border-radius: 12px 0 0 12px; /* Matches the mockup tab look */
    padding: 16px 8px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Reenie Beanie', cursive;
    color: #fff;
    font-size: 44px; /* Reduced from 72px */
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
    box-shadow: -4px 0 12px rgba(68, 131, 255, 0.2);
}

/* Content Container Overrides */
.brand-package-page .container {
    background: #fff;
    padding-bottom: 0; /* Let footer section handle padding */
}

/* Hero Section / Intro */
.brand-intro {
    padding-bottom: 40px;
    max-width: 1152px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.brand-intro h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 8vw, 110px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: normal;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-top: 60px;
    margin-bottom: 60px;
}

.brand-intro p {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
    max-width: 760px;
    line-height: 1.45;
}

.brand-intro p:last-child {
    margin-bottom: 40px;
}

/* Section Headings */
.section-title-large {
    font-size: 40px;
    font-weight: 900;
    color: var(--text-dark);
    margin-top: 36px;
    margin-bottom: 48px;
    text-transform: uppercase;
    line-height: 1.15;
}

/* Process Section */
.process-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-step {
    margin-bottom: 0;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.process-step ul {
    list-style: none;
    padding-left: 0;
}

.process-step li {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.45;
}

.process-text-block {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-dark);
    white-space: pre-line;
}

/* What You Get & How We Work */
.content-section {
    margin-bottom: 80px;
    max-width: 1152px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.deliverables-list {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
}

.work-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.work-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.work-item p {
    font-size: 18px;
    color: var(--text-dark);
}

.pricing-note {
    font-size: 16px;
    font-style: italic;
    color: #666;
    margin-top: 12px;
}

/* Dark Request Form Section */
.brand-package-page .request-form-section {
    background: var(--bg-dark-section);
    border-radius: 0 !important;
    /* Default Desktop: container padding is 80px */
    width: calc(100% + 160px) !important;
    margin-left: -80px !important;
    margin-right: -80px !important;
    margin-bottom: 0 !important;
}

.brand-package-page .new-site-footer {
    margin-top: 0 !important;
}

@media (max-width: 1100px) {
    .brand-package-page .request-form-section {
        /* Tablet: container padding is 40px */
        width: calc(100% + 80px) !important;
        margin-left: -40px !important;
        margin-right: -40px !important;
        margin-bottom: 0 !important;
    }
    
    body.brand-package-page .new-site-footer {
        width: calc(100% + 80px) !important;
        margin-left: -40px !important;
        margin-right: -40px !important;
        margin-top: 0 !important;
    }
}

@media (max-width: 800px) {
    .brand-package-page .request-form-section {
        /* Force element to span the exact screen width regardless of container */
        width: 100vw !important;
        position: relative !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        max-width: none !important;
        padding-bottom: 80px !important; /* Ensure sufficient padding inside the dark area */
        margin-bottom: 0 !important;
    }
    
    body.brand-package-page .new-site-footer {
        /* Force element to span the exact screen width regardless of container */
        width: 100vw !important;
        position: relative !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        max-width: none !important;
        margin-top: 0 !important;
    }
}

.brand-package-page .request-form-title {
    font-size: 75px;
    color: var(--bg-light);
}

/* Responsive adjustments */
@media (max-width: 1440px) {
    .sticky-sidebar-blue { font-size: 60px; }
}

@media (max-width: 1100px) {
    .section-title-large { font-size: 36px; }
}

@media (max-width: 1024px) {
    .request-form-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 800px) {
    .brand-intro h1 {
        font-size: 54px !important;
        line-height: 1.1 !important;
    }
    .section-title-large {
        font-size: 28px;
    }
    .process-step h3,
    .work-item h4 {
        font-size: 18px;
    }
    .process-step li,
    .process-text-block,
    .deliverables-list,
    .work-item p,
    .brand-intro p {
        font-size: 15px;
    }

    .brand-intro,
    .content-section {
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }

    .services-switcher {
        width: calc(100% + 40px) !important;
        margin-left: -20px !important;
        margin-right: -20px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* Services Switcher Tabs Styling */
.services-switcher {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 24px;
    margin-bottom: 40px;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.services-switcher::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari/Edge */
}

.services-switch-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #EAEAEA;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
        border-radius: 40px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
}

.services-switch-btn:hover {
    background-color: var(--brand-green) !important;
    color: #000 !important;
}

.services-switch-btn.active {
    background-color: var(--brand-green) !important;
    color: #000 !important;
}

/* Fix footer margin to avoid white gap */
.brand-package-page .new-site-footer {
    margin-top: 0;
}

