/* ==========================================================================
   ABOUT US & CONTACT SHOWROOM STYLES
   ========================================================================== */

/* Color Variables */
:root {
    --primary-blue: #2990E6;
    --secondary-blue: #2164DC;
    --accent-blue: #A1D8EF;
    --bg-light: #FAFDFD;
    --text-dark: #323232;
    --text-neutral: #8C8E90;
    --radius-main: 18px;
    --shadow-soft: 0 20px 45px rgba(0, 0, 0, 0.06);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-body);
    margin: 0;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-section {
    padding: 50px 0;
}

.center-text { text-align: center; }
.space-mb-large { margin-bottom:18px; }

.section-eyebrow {
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

/* SECTION 1: HERO */
.about-hero-section {
    height: 500px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    color: #FFFFFF;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-main-title {
    font-size: 42px;
    color: #FFFFFF;
    line-height: 1.15;
    margin: 12px 0;
}

.hero-sub-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.hero-body-paragraph {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 18px;
    max-width: 480px;
}

.btn-hero-primary {
    background: #FFFFFF;
    color: var(--secondary-blue);
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    background: #F0F7FF;
}

/* Hero Visual Composition */
.store-image-wrapper { position: relative; }
.hero-store-img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: var(--radius-main);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.float-card {
    position: absolute;
    background: #FFFFFF;
    color: var(--text-dark);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon { color: var(--primary-blue); font-weight: 900; }
.card-top { top: 20px; left: -20px; }
.card-mid { top: 45%; right: -20px; }
.card-bottom { bottom: 20px; left: 40px; }

/* Floating Keyframe Animations */
.float-anim-1 { animation: floatSlow 4s ease-in-out infinite; }
.float-anim-2 { animation: floatSlow 5s ease-in-out infinite 1s; }
.float-anim-3 { animation: floatSlow 4.5s ease-in-out infinite 0.5s; }

@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* SECTION 2 & 5 & 7: TWO COLUMN LAYOUTS */
.two-col-grid, .split-layout-align {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-large-img, .rounded-large-img {
    width: 100%;
    border-radius: var(--radius-main);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

.text-body-lg { font-size: 18px; font-weight: 600; line-height: 1.5; margin-bottom: 16px; }
.text-body-neutral { color: var(--text-neutral); line-height: 1.6; margin-bottom: 24px; }

.btn-theme-primary {
    background: var(--primary-blue);
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-theme-primary:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

/* SECTION 3: TIMELINE */
.our-story-section { background-color: var(--bg-light); }
.section-subtitle-max { max-width: 640px; margin: 0 auto 50px auto; color: var(--text-neutral); }

.timeline-wrapper {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-blue);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 18px;
    width: 50%;
    padding: 0 30px;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; }

.timeline-marker {
    position: absolute;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-blue);
    border: 4px solid #FFFFFF;
    box-shadow: 0 0 0 3px var(--accent-blue);
}

.timeline-item:nth-child(odd) .timeline-marker { right: -12px; }
.timeline-item:nth-child(even) .timeline-marker { left: -12px; }

.timeline-content {
    background: #FFFFFF;
    padding: 20px;
    border-radius: var(--radius-main);
    box-shadow: var(--shadow-soft);
}

.timeline-year {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 4px;
}

/* SECTION 4: VALUES */
.core-values-section { background: var(--accent-blue); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: #FFFFFF;
    padding: 30px 24px;
    border-radius: var(--radius-main);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.value-icon { font-size: 32px; margin-bottom: 12px; }

/* SECTION 5: CHECKLIST */
.styled-checklist { list-style: none; padding: 0; margin: 18px 0; }
.styled-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.check-circle {
    background: var(--primary-blue);
    color: #FFFFFF;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* SECTION 6: BUSINESS STATS */
.stats-section { background: var(--secondary-blue); color: #FFFFFF; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.counter-number { font-size: 48px; font-weight: 800; }
.stat-suffix { font-size: 48px; font-weight: 800; color: var(--accent-blue); }
.stat-label { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; }

/* SECTION 7: STORE HOURS */
.hours-card {
    background: #FFFFFF;
    padding: 24px;
    border-radius: var(--radius-main);
    box-shadow: var(--shadow-soft);
    margin-bottom: 18px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #F0F0F0;
    font-size: 14px;
}

.hours-row:last-child { border-bottom: none; }

/* SECTION 8: CONTACT CARDS */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.contact-card {
    background: #FFFFFF;
    border-radius: var(--radius-main);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    color: var(--text-dark);
    transition: border-color 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
}

.contact-card-icon { font-size: 32px; margin-bottom: 8px; }

/* SECTION 9 & 10: FORM & MAP */
.form-split-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.form-group { margin-bottom: 16px; }

.form-input, .form-textarea {
    width: 100%;
    height: 58px;
    padding: 0 20px;
    border-radius: 14px;
    border: 1px solid #E5E7EB;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-textarea { height: auto; padding: 16px 20px; }
.form-input:focus, .form-textarea:focus { border-color: var(--primary-blue); }
.btn-full-width { width: 100%; border: none; cursor: pointer; font-size: 16px; }

.map-wrapper {
    border-radius: var(--radius-main);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* RESPONSIVE LAYOUT */
@media (max-width: 1024px) {
    .values-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .about-hero-section { height: auto; padding: 60px 0; }
    .about-hero-grid, .two-col-grid, .split-layout-align, .form-split-wrap {
        grid-template-columns: 1fr;
    }
    .timeline-wrapper::before { left: 20px; }
    .timeline-item { width: 100%; left: 0 !important; text-align: left !important; padding-left: 50px; }
    .timeline-marker { left: 12px !important; }
}

/* Core Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

/* Card Container */
.value-card {
    background: var(--card-bg, #FFFFFF);
    border: 1px solid var(--border-subtle, rgba(140, 142, 144, 0.15));
    border-radius: var(--radius-lg, 24px);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-xs, 0 1px 3px rgba(33, 100, 220, 0.05));
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon Container Badge */
.value-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full, 9999px);
    background: rgba(161, 216, 239, 0.2); /* Soft Accent Sky background */
    border: 1px solid rgba(41, 144, 230, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.35s ease;
}

/* Local Image Icon Alignment */
.value-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

/* Typography Alignment */
.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark, #323232);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--neutral-gray, #8C8E90);
    line-height: 1.6;
}

/* Hover Interactions */
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg, 0 20px 32px -8px rgba(33, 100, 220, 0.12));
    border-color: rgba(41, 144, 230, 0.3);
}

.value-card:hover .value-icon-wrap {
    background: var(--primary-blue, #2990E6);
    border-color: var(--primary-blue, #2990E6);
}

/* Optional: Inverts dark/colored SVGs to white on card hover */
.value-card:hover .value-icon-img {
    transform: scale(1.1);
    filter: brightness(0) invert(1);
}