/* ==============================================
   GUJARAT PHOTO GOODS — ABOUT US PAGE
   Scoped under .gpg-about so it never leaks into
   your existing header/footer styles.
   ============================================== */

.gpg-about {
    --gpg-accent: #b9863f;
    --gpg-dark: #17140f;
    --gpg-text: #1c1c1c;
    --gpg-gray: #5c5c5c;
    --gpg-bg-light: #faf8f5;
    --gpg-bg-white: #ffffff;
    --gpg-border: #e7e1d8;
    font-family: 'Poppins', sans-serif;
    color: var(--gpg-text);
    overflow-x: hidden;
}

.gpg-about h1,
.gpg-about h2,
.gpg-about h3,
.gpg-about h4 {
    font-family: 'Playfair Display', serif;
    margin: 0;
    color: var(--gpg-text);
}

.gpg-about p {
    margin: 0;
    line-height: 1.7;
    color: var(--gpg-gray);
}

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

.gpg-badge {
    display: inline-block;
    color: var(--gpg-accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.gpg-highlight { color: var(--gpg-accent); }

/* ---------- HERO ---------- */
.gpg-hero {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    align-items: center;
    background: var(--gpg-bg-light);
}

.gpg-hero__left {
    padding: 70px 60px;
    max-width: 560px;
}

.gpg-hero__title {
    font-size: 42px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 20px;
}

.gpg-hero__desc {
    font-size: 15.5px;
    margin-bottom: 30px;
}

.gpg-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--gpg-accent);
    color: var(--gpg-accent);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 14px 26px;
    transition: background .25s ease, color .25s ease;
}

.gpg-btn-outline:hover {
    background: var(--gpg-accent);
    color: #fff;
}

.gpg-hero__right {
    height: 100%;
    min-height: 420px;
}

.gpg-hero__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- FOUNDER ---------- */
.gpg-founder {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr 0.9fr;
    gap: 50px;
    align-items: start;
    padding: 80px 60px;
    background: var(--gpg-bg-white);
}

.gpg-founder__image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.gpg-founder__name {
    font-size: 30px;
    margin-bottom: 18px;
}

.gpg-founder__para {
    font-size: 14.5px;
    margin-bottom: 16px;
}

.gpg-founder__signature {
    max-height: 55px;
    margin-top: 20px;
}

.gpg-founder__signature-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 26px;
    color: var(--gpg-text);
    margin-top: 20px;
}

.gpg-founder__title {
    font-size: 13px;
    color: var(--gpg-gray);
    margin-top: 4px;
}

.gpg-stats-box {
    background: var(--gpg-bg-light);
    border: 1px solid var(--gpg-border);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gpg-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gpg-stat-icon {
    flex: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gpg-accent);
}

.gpg-stat-icon svg { width: 26px; height: 26px; }

.gpg-stat-text { display: flex; flex-direction: column; }

.gpg-stat-label {
    font-size: 13px;
    color: var(--gpg-gray);
}

.gpg-stat-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--gpg-text);
}

/* ---------- FEATURES DARK BAR ---------- */
.gpg-features-bar {
    background: var(--gpg-dark);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding: 45px 60px;
}

.gpg-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1 1 190px;
    min-width: 190px;
}

.gpg-feature-icon {
    flex: none;
    width: 46px;
    height: 46px;
    border: 1.5px solid var(--gpg-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gpg-accent);
}

.gpg-feature-icon svg { width: 22px; height: 22px; }

.gpg-feature-text h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.gpg-feature-text p {
    color: #b3aea5;
    font-size: 12.5px;
    margin-top: 4px;
}

/* ---------- TIMELINE ---------- */
.gpg-timeline-section {
    background: var(--gpg-bg-light);
    text-align: center;
    padding: 80px 60px 90px;
}

.gpg-badge--center { display: block; }

.gpg-timeline-title {
    font-size: 32px;
    margin-bottom: 60px;
}

.gpg-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.gpg-timeline__line {
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gpg-accent);
    opacity: .5;
}

.gpg-timeline__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding-top: 30px;
}

.gpg-timeline__dot {
    position: absolute;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--gpg-accent);
}

.gpg-timeline__year {
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}

.gpg-timeline__desc {
    font-size: 13px;
    max-width: 150px;
}

/* ==============================================
   RESPONSIVE
   ============================================== */

@media (max-width: 1024px) {
    .gpg-hero__left { padding: 50px 40px; }
    .gpg-founder { grid-template-columns: 1fr 1fr; padding: 60px 40px; }
    .gpg-founder__image { grid-column: 1 / -1; }
    .gpg-stats-box { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
    .gpg-stat-item { flex: 1 1 45%; }
    .gpg-features-bar { padding: 40px; }
    .gpg-timeline { flex-wrap: wrap; gap: 40px 0; }
    .gpg-timeline__line { display: none; }
    .gpg-timeline__item { flex: 1 1 25%; }
}

@media (max-width: 768px) {
    .gpg-hero { grid-template-columns: 1fr; }
    .gpg-hero__right { min-height: 260px; order: -1; }
    .gpg-hero__left { padding: 40px 24px; max-width: 100%; }
    .gpg-hero__title { font-size: 32px; }

    .gpg-founder { grid-template-columns: 1fr; padding: 50px 24px; gap: 30px; }
    .gpg-founder__image img { min-height: 300px; }
    .gpg-stats-box { flex-direction: column; }
    .gpg-stat-item { flex: 1 1 100%; }

    .gpg-features-bar { flex-direction: column; padding: 35px 24px; }
    .gpg-feature-item { flex: 1 1 100%; }

    .gpg-timeline-section { padding: 60px 24px 70px; }
    .gpg-timeline-title { font-size: 24px; }
    .gpg-timeline__item { flex: 1 1 45%; }
}

@media (max-width: 480px) {
    .gpg-hero__title { font-size: 26px; }
    .gpg-founder__name { font-size: 24px; }
    .gpg-timeline__item { flex: 1 1 100%; }
}
