/* ============================================================
   ALL BLINDS LLC — ABOUT PAGE STYLES
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: #f9f9f9;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

img { max-width: 100%; display: block; }

:root {
    --brand-orange: #ff6600;
    --brand-red: #cc0000;
    --brand-slate: #2c3e50;
    --dark: #1a1a1a;
}

/* ============================================================
   SHARED HEADER/NAV (mirrors other pages)
   ============================================================ */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background-color: #fff;
    padding: 0.6rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 1000;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { height: 80px; width: auto; }

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-right: 1rem;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--brand-orange);
    transition: width 0.25s;
}

.nav-links li a:hover { color: var(--brand-orange); }
.nav-links li a:hover::after { width: 100%; }

.cta-button {
    background-color: var(--brand-orange);
    color: white !important;
    padding: 0.55rem 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    display: inline-block;
}

.cta-button:hover {
    background: #e55a00;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,102,0,0.35);
}

.cta-button::after { display: none !important; }

.dropdown { position: relative; }

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 1001;
    list-style: none;
    padding: 8px 0 0.4rem;
    border-radius: 8px;
    border-top: 3px solid var(--brand-orange);
}

.dropdown-content li a {
    color: #333; padding: 10px 18px;
    text-decoration: none; display: block;
    font-weight: 500; font-size: 0.88rem;
    transition: background 0.15s, color 0.15s;
}

.dropdown-content li a::after { display: none; }
.dropdown-content li a:hover { background: #fff5ef; color: var(--brand-orange); }
.dropdown:hover .dropdown-content { display: block; }
.dropbtn { cursor: pointer; }

.hamburger { display: none; cursor: pointer; z-index: 1001; }

.bar {
    display: block; width: 25px; height: 3px;
    margin: 5px auto; border-radius: 3px;
    transition: all 0.3s ease-in-out;
    background-color: #333;
}

.mobile-only-cta { display: none; }

/* ============================================================
   ABOUT HERO
   ============================================================ */
.about-hero {
    background: linear-gradient(135deg, var(--brand-slate) 0%, #1a252f 100%);
    color: white;
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,102,0,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.about-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.about-hero h1 span { color: #ff9966; }

.about-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 560px;
    line-height: 1.7;
}

/* ============================================================
   SECTION LABELS (eyebrow text)
   ============================================================ */
.section-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-orange);
    margin-bottom: 0.6rem;
}

.section-label.centered { text-align: center; }

/* ============================================================
   OUR STORY
   ============================================================ */
.our-story {
    padding: 6rem 0;
    background: #fff;
}

.story-flex {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text { flex: 1; }

.story-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #111;
    margin-bottom: 1.4rem;
    line-height: 1.2;
}

.story-text p {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-text p:last-child { margin-bottom: 0; }

.story-image {
    flex: 1;
    max-width: 480px;
}

.story-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* ============================================================
   VALUES / CORE
   ============================================================ */
.values {
    padding: 6rem 0;
    background: #f4f4f4;
}

.centered-h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #111;
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.6rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    border-bottom: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.1);
    border-bottom-color: var(--brand-orange);
}

.value-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: #fff5ef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.value-icon i {
    font-size: 1.4rem;
    color: var(--brand-orange);
}

.value-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.6rem;
}

.value-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.service-area {
    padding: 6rem 0;
    background: #fff;
}

.service-flex {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.service-text { flex: 1; }

.service-text h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #111;
    margin-bottom: 1rem;
}

.service-text > p {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.city-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.city-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: #444;
    font-weight: 500;
}

.city-list li i {
    color: var(--brand-orange);
    font-size: 0.85rem;
}

.service-cta-box {
    flex: 0 0 300px;
    background: linear-gradient(135deg, var(--brand-slate) 0%, #1a252f 100%);
    color: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 16px 40px rgba(44,62,80,0.25);
    text-align: center;
}

.service-cta-box h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.service-cta-box p {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.cta-button-primary {
    display: block;
    background: var(--brand-orange);
    color: white;
    text-decoration: none;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 0.8rem;
    transition: background 0.2s, transform 0.15s;
}

.cta-button-primary:hover {
    background: #e55a00;
    transform: translateY(-2px);
}

.cta-button-secondary {
    display: block;
    background: transparent;
    color: white;
    text-decoration: none;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.4);
    transition: background 0.2s, border-color 0.2s;
}

.cta-button-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
    background: linear-gradient(135deg, #cc2200 0%, #ff4400 50%, #ff6600 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.cta-strip h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-strip p {
    font-size: 1rem;
    opacity: 0.88;
    margin-bottom: 2rem;
}

.cta-strip .cta-button {
    background: white;
    color: #ff4400 !important;
    font-size: 1rem;
    padding: 0.85rem 2.2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.cta-strip .cta-button:hover {
    background: #fff5ef;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    padding: 3rem 0 2rem;
    background-color: var(--dark);
    color: #ccc;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    height: 100px;
    width: auto;
    margin: 0 auto 0.5rem;
    opacity: 0.9;
}

.footer-logo a { display: inline-block; }

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: #ff6600; text-decoration: underline; }
.footer p { font-size: 0.82rem; color: #888; }
.footer a { color: #ff9966; text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .story-flex,
    .service-flex {
        flex-direction: column;
    }

    .story-image { max-width: 100%; }

    .service-cta-box {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .desktop-cta { display: none; }
    .mobile-only-cta { display: block; }

    .nav-links {
        position: fixed;
        left: -100%; top: 0;
        flex-direction: column;
        background: #fff;
        width: 100%; height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        z-index: 1000;
        padding-top: 110px;
        box-shadow: 0 10px 27px rgba(0,0,0,0.12);
        visibility: hidden;
        gap: 0; margin-right: 0;
    }

    .nav-links.active { left: 0; visibility: visible; }
    .nav-links li { margin: 1.2rem 0; }

    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-container { flex-wrap: wrap; gap: 0.5rem; }
    .logo img { height: 60px; }

    .city-list { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .logo img { height: 52px; }
}
