/* =============================================
   HouseOffBarber - Main Stylesheet
   ============================================= */

/* ----- CSS Variables ----- */
:root {
    --deep-blue: #1e5a8a;
    --bright-blue: #3d7cb5;
    --sky-blue: #6ba8d4;
    --light-cyan: #8ecae6;
    --cream: #f5dfa0;
    --light-cream: #fef3d0;
    --warm-yellow: #e6b44c;
    --orange: #d4883a;
    --vibrant-red: #c94432;
    --dark-red: #9b3328;
    --black: #1a1a1a;
    --off-white: #faf8f2;
    --outline-width: 4px;
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Work Sans', sans-serif;
    background: var(--off-white);
    color: var(--black);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Prevent horizontal scroll from any section */
section, footer, nav {
    max-width: 100vw;
}

/* ----- Cubist Background Pattern ----- */
.cubist-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.cubist-bg svg {
    width: 100%;
    height: 100%;
    opacity: 0.04;
}

/* =============================================
   Navigation
   ============================================= */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 200;
    background: var(--cream);
    border-bottom: var(--outline-width) solid var(--black);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

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

.logo-text {
    font-family: 'Secular One', sans-serif;
    font-size: 1.3rem;
    color: var(--deep-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 0.75rem 1.25rem;
    border: 3px solid transparent;
    transition: all 0.2s;
}

.nav-links a:hover {
    background: var(--light-cream);
    border-color: var(--black);
}

.nav-links .instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    line-height: 1;
}

.nav-links .instagram-link svg {
    display: block;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

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

.nav-cta {
    background: var(--vibrant-red) !important;
    color: white !important;
    border: 3px solid var(--black) !important;
    box-shadow: 4px 4px 0 var(--black);
}

.nav-cta:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--black) !important;
}

/* ----- Mobile Menu Button ----- */
.menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: 3px solid var(--black);
    background: white;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 200;
    position: relative;
}

.menu-btn span {
    width: 20px;
    height: 3px;
    background: var(--black);
    transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ----- Mobile Menu Overlay ----- */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 80px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--black);
    font-family: 'Secular One', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 3px solid transparent;
    transition: all 0.2s;
}

.mobile-menu a:hover {
    background: var(--light-cream);
    border-color: var(--black);
}

.mobile-menu .nav-cta {
    background: var(--vibrant-red);
    color: white;
    border: 3px solid var(--black);
    box-shadow: 4px 4px 0 var(--black);
    margin-top: 1rem;
}

.mobile-menu .instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu .instagram-link svg {
    display: block;
}

/* =============================================
   Buttons
   ============================================= */
.btn {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    border: var(--outline-width) solid var(--black);
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--cream);
    color: var(--black);
    box-shadow: 6px 6px 0 var(--black);
}

.btn-primary:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 var(--black);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

/* =============================================
   Section Title (Shared)
   ============================================= */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-family: 'Secular One', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    text-transform: uppercase;
    display: inline-block;
    background: var(--deep-blue);
    padding: 1rem 2rem;
    border: var(--outline-width) solid var(--black);
    box-shadow: 6px 6px 0 var(--black);
    transform: rotate(-1deg);
}

/* =============================================
   Hero Section (Index Page)
   ============================================= */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
    overflow: hidden;
}

.hero-left {
    background: var(--deep-blue);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-right: var(--outline-width) solid var(--black);
    overflow: hidden;
}

/* Cubist shapes in hero */
.cubist-shape {
    position: absolute;
    border: var(--outline-width) solid var(--black);
}

.shape-1 {
    width: 120px;
    height: 180px;
    background: var(--warm-yellow);
    top: 10%;
    right: -60px;
    transform: rotate(-8deg);
    z-index: 2;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: var(--vibrant-red);
    bottom: 15%;
    right: 10%;
    transform: rotate(15deg);
}

.shape-3 {
    width: 60px;
    height: 100px;
    background: var(--sky-blue);
    top: 30%;
    left: 5%;
    transform: rotate(-5deg);
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: var(--cream);
    color: var(--black);
    border: 3px solid var(--black);
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    transform: rotate(-2deg);
}

.hero h1 {
    font-family: 'Secular One', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    color: var(--cream);
    position: relative;
    display: inline-block;
}

.hero p {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 450px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Right - App Preview */
.hero-right {
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
}

.app-frame {
    width: 320px;
    background: var(--off-white);
    border: var(--outline-width) solid var(--black);
    box-shadow: 12px 12px 0 var(--black);
    position: relative;
}

.app-header {
    background: var(--deep-blue);
    padding: 1.5rem;
    border-bottom: var(--outline-width) solid var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-header h3 {
    font-family: 'Secular One', sans-serif;
    color: white;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.app-dots {
    display: flex;
    gap: 6px;
}

.app-dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--black);
    background: var(--vibrant-red);
}

.app-dot:nth-child(2) {
    background: var(--warm-yellow);
}

.app-dot:nth-child(3) {
    background: var(--sky-blue);
}

.app-calendar {
    padding: 1.5rem;
    background: var(--light-cream);
    border-bottom: var(--outline-width) solid var(--black);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.calendar-nav {
    display: flex;
    gap: 0.5rem;
}

.calendar-nav button {
    width: 30px;
    height: 30px;
    border: 2px solid var(--black);
    background: white;
    font-weight: bold;
    cursor: pointer;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    background: white;
    border: 2px solid var(--black);
}

.cal-day.header {
    background: transparent;
    border: none;
    font-size: 0.7rem;
    color: var(--deep-blue);
}

.cal-day.active {
    background: var(--vibrant-red);
    color: white;
}

.cal-day.today {
    background: var(--deep-blue);
    color: white;
}

.app-slots {
    padding: 1.5rem;
}

.app-slots h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

.slot-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border: 3px solid var(--black);
    background: white;
    transition: all 0.2s;
}

.slot-item:hover {
    background: var(--light-cream);
    transform: translateX(4px);
}

.slot-item.booked {
    background: #e0e0e0;
    opacity: 0.6;
}

.slot-time {
    font-weight: 700;
}

.slot-service {
    font-size: 0.85rem;
    color: #666;
}

.slot-status {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    border: 2px solid var(--black);
}

.slot-status.open {
    background: var(--sky-blue);
    color: white;
}

.slot-status.booked {
    background: #999;
    color: white;
}

/* Decorative barber pole */
.barber-pole {
    position: absolute;
    width: 50px;
    height: 200px;
    right: 10%;
    top: 15%;
    border: var(--outline-width) solid var(--black);
    background: repeating-linear-gradient(
        -45deg,
        var(--vibrant-red),
        var(--vibrant-red) 15px,
        white 15px,
        white 30px,
        var(--deep-blue) 30px,
        var(--deep-blue) 45px,
        white 45px,
        white 60px
    );
    transform: rotate(10deg);
}

.barber-pole::before,
.barber-pole::after {
    content: '';
    position: absolute;
    left: -5px;
    right: -5px;
    height: 25px;
    background: var(--warm-yellow);
    border: var(--outline-width) solid var(--black);
}

.barber-pole::before {
    top: -15px;
}

.barber-pole::after {
    bottom: -15px;
}

/* =============================================
   Features Section
   ============================================= */
.features {
    padding: 6rem 4rem;
    background: var(--bright-blue);
    border-top: var(--outline-width) solid var(--black);
    border-bottom: var(--outline-width) solid var(--black);
    position: relative;
    overflow: hidden;
}

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

.feature-card {
    background: var(--off-white);
    border: var(--outline-width) solid var(--black);
    padding: 2rem;
    position: relative;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 var(--black);
}

.feature-card:nth-child(1) {
    transform: rotate(-1deg);
}

.feature-card:nth-child(2) {
    transform: rotate(1deg);
}

.feature-card:nth-child(3) {
    transform: rotate(-0.5deg);
}

.feature-card:nth-child(1):hover {
    transform: rotate(-1deg) translate(-4px, -4px);
}

.feature-card:nth-child(2):hover {
    transform: rotate(1deg) translate(-4px, -4px);
}

.feature-card:nth-child(3):hover {
    transform: rotate(-0.5deg) translate(-4px, -4px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border: var(--outline-width) solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card:nth-child(1) .feature-icon {
    background: var(--cream);
}

.feature-card:nth-child(2) .feature-icon {
    background: var(--vibrant-red);
}

.feature-card:nth-child(3) .feature-icon {
    background: var(--sky-blue);
}

.feature-card h3 {
    font-family: 'Secular One', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: var(--deep-blue);
}

.feature-card p {
    color: #555;
    line-height: 1.6;
}

/* =============================================
   How It Works Section
   ============================================= */
.how-it-works {
    padding: 6rem 4rem;
    background: var(--cream);
    overflow: hidden;
}

.how-it-works .section-title h2 {
    background: var(--vibrant-red);
    color: white;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 6px;
    background: var(--black);
    z-index: 0;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Secular One', sans-serif;
    font-size: 3rem;
    border: var(--outline-width) solid var(--black);
    background: var(--off-white);
}

.step:nth-child(1) .step-num {
    background: var(--deep-blue);
    color: white;
    transform: rotate(-5deg);
}

.step:nth-child(2) .step-num {
    background: var(--warm-yellow);
    transform: rotate(3deg);
}

.step:nth-child(3) .step-num {
    background: var(--vibrant-red);
    color: white;
    transform: rotate(-2deg);
}

.step h3 {
    font-family: 'Secular One', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.step p {
    color: #555;
    font-size: 0.95rem;
    max-width: 250px;
    margin: 0 auto;
}

/* =============================================
   Free & Donate Section
   ============================================= */
.free-section {
    padding: 6rem 4rem;
    background: var(--deep-blue);
    border-top: var(--outline-width) solid var(--black);
    overflow: hidden;
}

.free-section .section-title h2 {
    background: var(--cream);
    color: var(--black);
}

.free-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.free-card {
    background: var(--off-white);
    border: var(--outline-width) solid var(--black);
    padding: 3rem;
    text-align: center;
    transform: rotate(-1deg);
    box-shadow: 8px 8px 0 var(--black);
}

.free-badge {
    display: inline-block;
    background: var(--vibrant-red);
    color: white;
    font-family: 'Secular One', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    border: 3px solid var(--black);
    margin-bottom: 1.5rem;
    transform: rotate(2deg);
}

.free-card h3 {
    font-family: 'Secular One', sans-serif;
    font-size: 3.5rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.free-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.free-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.free-features li {
    padding: 0.75rem 0;
    border-bottom: 2px solid #ddd;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.free-features li::before {
    content: '✓';
    width: 28px;
    height: 28px;
    background: var(--deep-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    border: 2px solid var(--black);
}

.donate-card {
    background: var(--cream);
    border: var(--outline-width) solid var(--black);
    padding: 3rem;
    text-align: center;
    transform: rotate(1deg);
    box-shadow: 8px 8px 0 var(--black);
}

.donate-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.donate-card h3 {
    font-family: 'Secular One', sans-serif;
    font-size: 2rem;
    color: var(--deep-blue);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.donate-card p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.donate-amounts {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.donate-amount {
    background: var(--off-white);
    border: 3px solid var(--black);
    padding: 0.75rem 1.25rem;
    font-family: 'Secular One', sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.15s;
}

.donate-amount:hover,
.donate-amount.selected {
    background: var(--warm-yellow);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--black);
}

.donate-custom {
    width: 100%;
    padding: 1rem;
    border: 3px solid var(--black);
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.donate-custom::placeholder {
    color: #999;
}

.donate-card .btn {
    background: var(--vibrant-red);
    color: white;
    width: 100%;
}

.donate-card .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.donate-secure {
    font-size: 0.8rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
}

/* =============================================
   Donation Success Page
   ============================================= */
.success-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    background: var(--cream);
}

.success-container {
    max-width: 600px;
    text-align: center;
    background: var(--off-white);
    border: var(--outline-width) solid var(--black);
    padding: 4rem 3rem;
    box-shadow: 12px 12px 0 var(--black);
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.success-page h1 {
    font-family: 'Secular One', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.success-details {
    background: var(--light-cream);
    border: 2px solid var(--black);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.success-details p {
    color: #555;
    margin: 0;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.success-share {
    padding-top: 2rem;
    border-top: 2px solid #ddd;
}

.success-share p {
    color: #666;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.share-btn {
    width: 50px;
    height: 50px;
    background: var(--black);
    border: 3px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.share-btn svg {
    fill: white;
}

.share-btn:hover {
    background: var(--deep-blue);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--black);
}

/* =============================================
   Testimonials Section
   ============================================= */
.testimonials {
    padding: 6rem 4rem;
    background: var(--light-cream);
    border-top: var(--outline-width) solid var(--black);
    overflow: hidden;
}

.testimonials .section-title h2 {
    background: var(--deep-blue);
}

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

.testimonial {
    background: var(--off-white);
    border: var(--outline-width) solid var(--black);
    padding: 2.5rem;
    position: relative;
}

.testimonial:nth-child(1) {
    transform: rotate(-1deg);
}

.testimonial:nth-child(2) {
    transform: rotate(1deg);
}

.testimonial::before {
    content: '"';
    font-family: 'Secular One', sans-serif;
    font-size: 6rem;
    color: var(--cream);
    position: absolute;
    top: -10px;
    left: 15px;
    line-height: 1;
}

.testimonial p {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-avatar {
    width: 55px;
    height: 55px;
    border: 3px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial:nth-child(1) .author-avatar {
    background: var(--deep-blue);
    color: white;
}

.testimonial:nth-child(2) .author-avatar {
    background: var(--vibrant-red);
    color: white;
}

.author-info strong {
    display: block;
}

.author-info span {
    font-size: 0.85rem;
    color: #666;
}

/* =============================================
   CTA Section
   ============================================= */
.cta {
    padding: 6rem 4rem;
    background: var(--vibrant-red);
    text-align: center;
    border-top: var(--outline-width) solid var(--black);
    position: relative;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border: var(--outline-width) solid var(--black);
}

.cta-shape-1 {
    width: 150px;
    height: 150px;
    background: var(--warm-yellow);
    top: -50px;
    left: 5%;
    transform: rotate(20deg);
    opacity: 0.5;
}

.cta-shape-2 {
    width: 100px;
    height: 200px;
    background: var(--deep-blue);
    bottom: -80px;
    right: 10%;
    transform: rotate(-15deg);
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: 'Secular One', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: white;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta .btn {
    background: var(--cream);
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

/* =============================================
   App Store Buttons
   ============================================= */
.app-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--black);
    color: white;
    padding: 0.75rem 1.25rem;
    border: 3px solid var(--black);
    text-decoration: none;
    transition: all 0.15s;
    box-shadow: 4px 4px 0 var(--deep-blue);
}

.app-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--deep-blue);
}

.app-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.app-btn-text span:first-child {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.app-btn-text span:last-child {
    font-size: 1rem;
    font-weight: 700;
}

/* =============================================
   Footer
   ============================================= */
footer {
    background: var(--black);
    color: white;
    padding: 4rem;
    border-top: var(--outline-width) solid var(--black);
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand .logo-text {
    color: var(--cream);
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h4 {
    font-family: 'Secular One', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

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

.footer-bottom {
    border-top: 2px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* =============================================
   About Page - Page Hero
   ============================================= */
.page-hero {
    padding: 10rem 4rem 5rem;
    background: var(--deep-blue);
    border-bottom: var(--outline-width) solid var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-shape {
    position: absolute;
    border: var(--outline-width) solid var(--black);
}

.page-hero-shape-1 {
    width: 150px;
    height: 150px;
    background: var(--warm-yellow);
    top: 20%;
    left: 5%;
    transform: rotate(15deg);
    opacity: 0.3;
}

.page-hero-shape-2 {
    width: 100px;
    height: 200px;
    background: var(--vibrant-red);
    bottom: 10%;
    right: 8%;
    transform: rotate(-10deg);
    opacity: 0.3;
}

.page-hero-shape-3 {
    width: 80px;
    height: 80px;
    background: var(--sky-blue);
    top: 30%;
    right: 15%;
    transform: rotate(25deg);
    opacity: 0.4;
}

.page-hero h1 {
    font-family: 'Secular One', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* =============================================
   About Page - Our Story Section
   ============================================= */
.our-story {
    padding: 6rem 4rem;
    background: var(--cream);
}

.our-story .section-title h2 {
    background: var(--vibrant-red);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.story-text h3 {
    font-family: 'Secular One', sans-serif;
    font-size: 1.8rem;
    color: var(--deep-blue);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.story-image {
    position: relative;
}

.story-image-frame {
    background: var(--off-white);
    border: var(--outline-width) solid var(--black);
    box-shadow: 12px 12px 0 var(--black);
    padding: 2rem;
    transform: rotate(2deg);
}

.story-image-inner {
    background: var(--deep-blue);
    border: var(--outline-width) solid var(--black);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.story-image-inner::before {
    content: '✂️';
    font-size: 6rem;
    opacity: 0.3;
}

.story-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--warm-yellow);
    border: 3px solid var(--black);
    padding: 0.75rem 1.5rem;
    font-family: 'Secular One', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    transform: rotate(-5deg);
}

/* =============================================
   About Page - Mission Section
   ============================================= */
.mission {
    padding: 6rem 4rem;
    background: var(--bright-blue);
    border-top: var(--outline-width) solid var(--black);
    border-bottom: var(--outline-width) solid var(--black);
}

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

.mission-card {
    background: var(--off-white);
    border: var(--outline-width) solid var(--black);
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.2s;
}

.mission-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 var(--black);
}

.mission-card:nth-child(1) {
    transform: rotate(-1deg);
}

.mission-card:nth-child(2) {
    transform: rotate(1deg);
}

.mission-card:nth-child(3) {
    transform: rotate(-0.5deg);
}

.mission-card:nth-child(1):hover {
    transform: rotate(-1deg) translate(-4px, -4px);
}

.mission-card:nth-child(2):hover {
    transform: rotate(1deg) translate(-4px, -4px);
}

.mission-card:nth-child(3):hover {
    transform: rotate(-0.5deg) translate(-4px, -4px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border: var(--outline-width) solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.mission-card:nth-child(1) .mission-icon {
    background: var(--cream);
}

.mission-card:nth-child(2) .mission-icon {
    background: var(--vibrant-red);
}

.mission-card:nth-child(3) .mission-icon {
    background: var(--sky-blue);
}

.mission-card h3 {
    font-family: 'Secular One', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

.mission-card p {
    color: #555;
    line-height: 1.7;
}

/* =============================================
   About Page - Team Section
   ============================================= */
.team {
    padding: 6rem 4rem;
    background: var(--light-cream);
}

.team .section-title h2 {
    background: var(--deep-blue);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: var(--off-white);
    border: var(--outline-width) solid var(--black);
    text-align: center;
    transition: transform 0.2s;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 8px 8px 0 var(--black);
}

.team-avatar {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: bold;
    color: white;
    border-bottom: var(--outline-width) solid var(--black);
}

.team-member:nth-child(1) .team-avatar {
    background: var(--deep-blue);
}

.team-member:nth-child(2) .team-avatar {
    background: var(--vibrant-red);
}

.team-member:nth-child(3) .team-avatar {
    background: var(--warm-yellow);
    color: var(--black);
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    font-family: 'Secular One', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.team-info .role {
    font-size: 0.9rem;
    color: var(--vibrant-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.team-info p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* =============================================
   About Page - Values Section
   ============================================= */
.values {
    padding: 6rem 4rem;
    background: var(--deep-blue);
    border-top: var(--outline-width) solid var(--black);
}

.values .section-title h2 {
    background: var(--cream);
    color: var(--black);
}

.values-container {
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    background: var(--off-white);
    border: var(--outline-width) solid var(--black);
    padding: 2rem;
    transition: transform 0.2s;
}

.value-item:hover {
    transform: translateX(8px);
}

.value-item:nth-child(odd) {
    transform: rotate(-0.5deg);
}

.value-item:nth-child(even) {
    transform: rotate(0.5deg);
}

.value-item:nth-child(odd):hover {
    transform: rotate(-0.5deg) translateX(8px);
}

.value-item:nth-child(even):hover {
    transform: rotate(0.5deg) translateX(8px);
}

.value-num {
    font-family: 'Secular One', sans-serif;
    font-size: 3rem;
    color: var(--deep-blue);
    line-height: 1;
    min-width: 60px;
}

.value-content h3 {
    font-family: 'Secular One', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.value-content p {
    color: #555;
    line-height: 1.7;
}

/* =============================================
   Blog Listing Page
   ============================================= */
.blog-listing {
    padding: 4rem;
    background: var(--cream);
    overflow: hidden;
}

.blog-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Featured Blog Card */
.blog-card-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--off-white);
    border: var(--outline-width) solid var(--black);
    text-decoration: none;
    color: inherit;
    margin-bottom: 3rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card-featured:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 var(--black);
}

.blog-card-featured .blog-card-image {
    min-height: 300px;
}

.blog-card-featured .blog-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card-featured h2 {
    font-family: 'Secular One', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-card-featured p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Blog Card */
.blog-card {
    background: var(--off-white);
    border: var(--outline-width) solid var(--black);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 var(--black);
}

.blog-card:nth-child(1) {
    transform: rotate(-0.5deg);
}

.blog-card:nth-child(2) {
    transform: rotate(0.5deg);
}

.blog-card:nth-child(3) {
    transform: rotate(-0.3deg);
}

.blog-card:nth-child(1):hover {
    transform: rotate(-0.5deg) translate(-4px, -4px);
}

.blog-card:nth-child(2):hover {
    transform: rotate(0.5deg) translate(-4px, -4px);
}

.blog-card:nth-child(3):hover {
    transform: rotate(-0.3deg) translate(-4px, -4px);
}

.blog-card-image {
    height: 180px;
    background: var(--bright-blue);
    border-bottom: var(--outline-width) solid var(--black);
    overflow: hidden;
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.blog-category {
    background: var(--warm-yellow);
    border: 2px solid var(--black);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-date {
    font-size: 0.85rem;
    color: #666;
}

.blog-card h3 {
    font-family: 'Secular One', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--deep-blue);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-read-more {
    color: var(--vibrant-red);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Coming Soon Card */
.blog-card-coming-soon {
    opacity: 0.7;
    pointer-events: none;
}

.blog-card-coming-soon .blog-card-image {
    background: var(--light-cream);
}

/* Newsletter Section */
.blog-newsletter {
    padding: 4rem;
    background: var(--deep-blue);
    border-top: var(--outline-width) solid var(--black);
    overflow: hidden;
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.newsletter-content {
    flex: 1;
}

.newsletter-content h2 {
    font-family: 'Secular One', sans-serif;
    font-size: 1.8rem;
    color: white;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    color: rgba(255,255,255,0.8);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    padding: 1rem 1.25rem;
    border: 3px solid var(--black);
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    width: 250px;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 4px 4px 0 var(--black);
}

/* =============================================
   Blog Post Page
   ============================================= */
.blog-post-hero {
    padding: 8rem 4rem 4rem;
    background: var(--deep-blue);
    overflow: hidden;
}

.blog-post-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-back-link {
    display: inline-block;
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: color 0.2s;
}

.blog-back-link:hover {
    color: white;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-post-meta .blog-category {
    background: var(--warm-yellow);
}

.blog-post-meta .blog-date,
.blog-post-meta .blog-read-time {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.blog-post-hero h1 {
    font-family: 'Secular One', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.blog-post-excerpt {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

/* Blog Post Content */
.blog-post-content {
    padding: 4rem;
    background: var(--off-white);
    overflow: hidden;
}

.blog-post-container {
    max-width: 700px;
    margin: 0 auto;
}

.blog-post-container .blog-intro {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.blog-post-container p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-post-container h2 {
    font-family: 'Secular One', sans-serif;
    font-size: 1.5rem;
    color: var(--deep-blue);
    text-transform: uppercase;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 4px solid var(--cream);
}

.blog-post-container ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.blog-post-container li {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.blog-post-container a {
    color: var(--deep-blue);
    font-weight: 600;
}

.blog-post-container a:hover {
    color: var(--vibrant-red);
}

/* Blog Callout Box */
.blog-callout {
    background: var(--light-cream);
    border: 3px solid var(--black);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.blog-callout h4 {
    font-family: 'Secular One', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.blog-callout p {
    margin-bottom: 0;
    font-size: 1rem;
}

.blog-callout-blue {
    background: var(--sky-blue);
    color: var(--black);
}

.blog-callout-blue p {
    color: var(--black);
}

/* Blog CTA Box */
.blog-cta-box {
    background: var(--cream);
    border: var(--outline-width) solid var(--black);
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 8px 8px 0 var(--black);
}

.blog-cta-box h3 {
    font-family: 'Secular One', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--deep-blue);
    margin-bottom: 0.75rem;
}

.blog-cta-box p {
    margin-bottom: 1.5rem;
}

/* Blog Author Section */
.blog-author {
    padding: 3rem 4rem;
    background: var(--cream);
    border-top: var(--outline-width) solid var(--black);
    overflow: hidden;
}

.blog-author-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.blog-author-avatar {
    width: 80px;
    height: 80px;
    background: var(--deep-blue);
    color: white;
    border: 3px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Secular One', sans-serif;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.blog-author-info h4 {
    font-family: 'Secular One', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--deep-blue);
    margin-bottom: 0.25rem;
}

.blog-author-info p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.blog-author-info a {
    color: var(--deep-blue);
    font-weight: 600;
}

/* Related Posts Section */
.blog-related {
    padding: 4rem;
    background: var(--off-white);
    border-top: var(--outline-width) solid var(--black);
    text-align: center;
    overflow: hidden;
}

.blog-related-container {
    max-width: 900px;
    margin: 0 auto;
}

.blog-related h2 {
    font-family: 'Secular One', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    color: var(--deep-blue);
    margin-bottom: 2rem;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
}

.blog-related-grid .blog-card {
    max-width: 350px;
}

/* =============================================
   Contact Page
   ============================================= */
.contact-section {
    padding: 6rem 4rem;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-container {
    background: var(--off-white);
    border: var(--outline-width) solid var(--black);
    padding: 3rem;
    box-shadow: 8px 8px 0 var(--black);
}

.contact-form-container h2 {
    font-family: 'Secular One', sans-serif;
    font-size: 1.8rem;
    color: var(--deep-blue);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-form-container > p {
    color: #555;
    margin-bottom: 2rem;
}

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

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

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 3px solid var(--black);
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    background: white;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--deep-blue);
    box-shadow: 4px 4px 0 var(--deep-blue);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.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='%231a1a1a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--off-white);
    border: var(--outline-width) solid var(--black);
    padding: 1.5rem 2rem;
    transition: transform 0.2s;
}

.contact-card:hover {
    transform: translateX(4px);
}

.contact-card:nth-child(1) {
    transform: rotate(-0.5deg);
}

.contact-card:nth-child(2) {
    transform: rotate(0.5deg);
}

.contact-card:nth-child(3) {
    transform: rotate(-0.3deg);
}

.contact-card:nth-child(4) {
    transform: rotate(0.3deg);
}

.contact-card:nth-child(1):hover {
    transform: rotate(-0.5deg) translateX(4px);
}

.contact-card:nth-child(2):hover {
    transform: rotate(0.5deg) translateX(4px);
}

.contact-card:nth-child(3):hover {
    transform: rotate(-0.3deg) translateX(4px);
}

.contact-card:nth-child(4):hover {
    transform: rotate(0.3deg) translateX(4px);
}

.contact-card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.contact-card h3 {
    font-family: 'Secular One', sans-serif;
    font-size: 1.2rem;
    color: var(--deep-blue);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.25rem;
}

.contact-card a {
    color: var(--deep-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
    transition: color 0.2s;
}

.contact-card a:hover {
    color: var(--vibrant-red);
}

.contact-card .social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-card .social-link svg {
    fill: currentColor;
}

/* FAQ Preview */
.faq-preview {
    padding: 6rem 4rem;
    background: var(--light-cream);
    border-top: var(--outline-width) solid var(--black);
}

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

.faq-item {
    background: var(--off-white);
    border: var(--outline-width) solid var(--black);
    padding: 2rem;
    transition: transform 0.2s;
}

.faq-item:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 var(--black);
}

.faq-item:nth-child(1) {
    transform: rotate(-0.5deg);
}

.faq-item:nth-child(2) {
    transform: rotate(0.5deg);
}

.faq-item:nth-child(3) {
    transform: rotate(0.3deg);
}

.faq-item:nth-child(4) {
    transform: rotate(-0.3deg);
}

.faq-item:nth-child(1):hover {
    transform: rotate(-0.5deg) translate(-4px, -4px);
}

.faq-item:nth-child(2):hover {
    transform: rotate(0.5deg) translate(-4px, -4px);
}

.faq-item:nth-child(3):hover {
    transform: rotate(0.3deg) translate(-4px, -4px);
}

.faq-item:nth-child(4):hover {
    transform: rotate(-0.3deg) translate(-4px, -4px);
}

.faq-item h3 {
    font-family: 'Secular One', sans-serif;
    font-size: 1.1rem;
    color: var(--deep-blue);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* =============================================
   Legal Pages (Privacy, Terms)
   ============================================= */
.legal-content {
    padding: 4rem;
    background: var(--off-white);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border: var(--outline-width) solid var(--black);
    padding: 3rem 4rem;
    box-shadow: 8px 8px 0 var(--black);
}

.legal-updated {
    display: inline-block;
    background: var(--light-cream);
    border: 2px solid var(--black);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-family: 'Secular One', sans-serif;
    font-size: 1.5rem;
    color: var(--deep-blue);
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--cream);
}

.legal-section h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--deep-blue);
    text-decoration: underline;
    font-weight: 500;
}

.legal-section a:hover {
    color: var(--vibrant-red);
}

.contact-box {
    background: var(--light-cream);
    border: 3px solid var(--black);
    padding: 1.5rem 2rem;
    margin-top: 1rem;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

/* =============================================
   Careers Page - Empty State
   ============================================= */
.careers-empty {
    padding: 6rem 4rem;
    background: var(--cream);
}

.empty-state {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--off-white);
    border: var(--outline-width) solid var(--black);
    padding: 4rem 3rem;
    box-shadow: 12px 12px 0 var(--black);
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.empty-state h2 {
    font-family: 'Secular One', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
}

.empty-state p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.empty-state .btn {
    margin-top: 1rem;
}

/* =============================================
   Careers Page - Why Work With Us
   ============================================= */
.why-work {
    padding: 6rem 4rem;
    background: var(--bright-blue);
    border-top: var(--outline-width) solid var(--black);
    border-bottom: var(--outline-width) solid var(--black);
}

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

.perk-card {
    background: var(--off-white);
    border: var(--outline-width) solid var(--black);
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.2s;
}

.perk-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 var(--black);
}

.perk-card:nth-child(1) {
    transform: rotate(-1deg);
}

.perk-card:nth-child(2) {
    transform: rotate(1deg);
}

.perk-card:nth-child(3) {
    transform: rotate(-0.5deg);
}

.perk-card:nth-child(1):hover {
    transform: rotate(-1deg) translate(-4px, -4px);
}

.perk-card:nth-child(2):hover {
    transform: rotate(1deg) translate(-4px, -4px);
}

.perk-card:nth-child(3):hover {
    transform: rotate(-0.5deg) translate(-4px, -4px);
}

.perk-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.perk-card h3 {
    font-family: 'Secular One', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

.perk-card p {
    color: #555;
    line-height: 1.7;
}

/* =============================================
   Responsive Styles
   ============================================= */
@media (max-width: 1024px) {
    /* Index Page */
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-left {
        border-right: none;
        border-bottom: var(--outline-width) solid var(--black);
        padding: 6rem 2rem 4rem;
    }

    .hero-right {
        padding: 4rem 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .feature-card,
    .feature-card:nth-child(1),
    .feature-card:nth-child(2),
    .feature-card:nth-child(3) {
        transform: none;
    }

    .free-container {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .free-card,
    .donate-card {
        transform: none;
    }

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

    .steps::before {
        display: none;
    }

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

    .testimonial,
    .testimonial:nth-child(1),
    .testimonial:nth-child(2) {
        transform: none;
    }

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

    .barber-pole {
        display: none;
    }

    .cubist-shape {
        display: none;
    }

    /* About Page */
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-image-frame {
        max-width: 450px;
        margin: 0 auto;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .mission-card,
    .mission-card:nth-child(1),
    .mission-card:nth-child(2),
    .mission-card:nth-child(3) {
        transform: none;
    }

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

    /* Careers Page */
    .perks-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .perk-card,
    .perk-card:nth-child(1),
    .perk-card:nth-child(2),
    .perk-card:nth-child(3) {
        transform: none;
    }

    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-card,
    .contact-card:nth-child(1),
    .contact-card:nth-child(2),
    .contact-card:nth-child(3),
    .contact-card:nth-child(4) {
        transform: none;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .faq-item,
    .faq-item:nth-child(1),
    .faq-item:nth-child(2),
    .faq-item:nth-child(3),
    .faq-item:nth-child(4) {
        transform: none;
    }

    /* Blog Page */
    .blog-card-featured {
        grid-template-columns: 1fr;
    }

    .blog-card-featured .blog-card-image {
        min-height: 200px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
    }

    .blog-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .hero-left {
        padding: 5rem 1.5rem 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

    .features,
    .how-it-works,
    .pricing,
    .testimonials,
    .cta,
    .free-section {
        padding: 4rem 1.5rem;
    }

    .app-frame {
        width: 100%;
        max-width: 320px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* About Page */
    .page-hero {
        padding: 8rem 1.5rem 4rem;
    }

    .our-story,
    .mission,
    .team,
    .values {
        padding: 4rem 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .value-item {
        flex-direction: column;
        gap: 1rem;
    }

    /* Careers Page */
    .careers-empty,
    .why-work {
        padding: 4rem 1.5rem;
    }

    .empty-state {
        padding: 3rem 1.5rem;
    }

    /* Legal Pages */
    .legal-content {
        padding: 2rem 1rem;
    }

    .legal-container {
        padding: 2rem 1.5rem;
    }

    /* Contact Page */
    .contact-section,
    .faq-preview {
        padding: 4rem 1.5rem;
    }

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

    .contact-form .btn {
        width: 100%;
        text-align: center;
    }

    /* Blog Page */
    .blog-listing,
    .blog-newsletter,
    .blog-related {
        padding: 3rem 1.5rem;
    }

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

    .blog-card,
    .blog-card:nth-child(1),
    .blog-card:nth-child(2),
    .blog-card:nth-child(3) {
        transform: none;
    }

    .blog-card-featured h2 {
        font-size: 1.4rem;
    }

    .blog-post-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .blog-post-content,
    .blog-author {
        padding: 2.5rem 1.5rem;
    }

    .blog-author-container {
        flex-direction: column;
        text-align: center;
    }
}
/* =============================================
   Email Signup Popup
   ============================================= */
.email-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1rem;
}

.email-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.email-popup {
    background: var(--off-white);
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    border: 4px solid var(--black);
    box-shadow: 8px 8px 0 var(--black);
    overflow: hidden;
}

.email-popup-overlay.active .email-popup {
    transform: translateY(0) scale(1);
}

.email-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--vibrant-red), var(--warm-yellow), var(--deep-blue));
}

.email-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: 2px solid var(--black);
    border-radius: 50%;
    background: var(--off-white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: var(--black);
    z-index: 1;
}

.email-popup-close:hover {
    background: var(--vibrant-red);
    color: white;
    border-color: var(--vibrant-red);
}

.email-popup-content {
    padding: 3rem 2.5rem;
    text-align: center;
}

.email-popup-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.email-popup-content h2 {
    font-family: 'Secular One', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.email-popup-content > p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.email-popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-popup-form input[type="email"] {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 3px solid var(--black);
    border-radius: 8px;
    background: white;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.email-popup-form input[type="email"]:focus {
    outline: none;
    border-color: var(--deep-blue);
    box-shadow: 0 0 0 3px rgba(30, 90, 138, 0.2);
}

.email-popup-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.email-popup-privacy {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
}

/* Popup Success State */
.email-popup-success {
    display: none;
    padding: 1rem 0;
}

.email-popup-success .success-icon {
    width: 60px;
    height: 60px;
    background: var(--deep-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    animation: popIn 0.4s ease;
}

@keyframes popIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.email-popup-success h3 {
    font-family: 'Secular One', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.email-popup-success p {
    color: #555;
    font-size: 0.95rem;
}

/* Popup Responsive */
@media (max-width: 480px) {
    .email-popup-content {
        padding: 2.5rem 1.5rem;
    }
    
    .email-popup-content h2 {
        font-size: 1.6rem;
    }
    
    .email-popup-icon {
        font-size: 2.5rem;
    }
}

/* =============================================
   Social Share Buttons
   ============================================= */

.social-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-share-label {
    font-weight: 600;
    color: var(--black);
    font-size: 0.9rem;
}

.social-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--cream);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-share-btn.twitter:hover {
    background: #000;
    border-color: #000;
    color: white;
}

.social-share-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.social-share-btn.linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.social-share-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
    color: white;
}

.social-share-btn.snapchat:hover {
    background: #FFFC00;
    border-color: #FFFC00;
    color: #000;
}

.social-share-btn.email:hover {
    background: var(--deep-blue);
    border-color: var(--deep-blue);
    color: white;
}

.social-share-btn.copy-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.social-share-btn.copy-link.copied {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

.social-share-btn svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .social-share {
        margin-top: 1rem;
    }
    
    .social-share-btn {
        width: 36px;
        height: 36px;
    }
    
    .social-share-btn svg {
        width: 16px;
        height: 16px;
    }
}
