/* =========================================================
   CRICKET STATION — ABOUT PAGE STYLES
   Prefix: ab- (About) to avoid conflicts
========================================================= */

/* ---------- GLOBAL ---------- */
.ab-label {
    font-family: 'Cinzel', serif;
    color: #C9A15A;
    letter-spacing: 0.4em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}
.ab-title {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: 0.05em;
}
.ab-title span { color: #C9A15A; font-style: italic; }
.ab-text {
    color: #D1D5DB;
    line-height: 1.8;
    font-size: 1rem;
}
.ab-section-header { margin-bottom: 4rem; }
.ab-section-desc {
    color: #D1D5DB;
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.7;
}

/* ---------- SECTION 1: HERO ---------- */
.ab-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ab-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.ab-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}
.ab-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,27,23,0.7) 0%, rgba(13,27,23,0.9) 100%);
    z-index: 2;
}
.ab-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 1.5rem;
}
.ab-breadcrumb {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: #D1D5DB;
    margin-bottom: 2rem;
}
.ab-breadcrumb a { color: #D1D5DB; transition: color 0.3s; }
.ab-breadcrumb a:hover { color: #C9A15A; }
.ab-breadcrumb span { color: #C9A15A; }
.ab-hero-title {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.05;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}
.ab-hero-title span { color: #C9A15A; font-style: italic; }
.ab-hero-desc {
    color: #D1D5DB;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

/* ---------- SECTION 2: STORY ---------- */
.ab-story { padding: 8rem 0; }
.ab-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.ab-story-img {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
}
.ab-story-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}
.ab-story-img:hover img { transform: scale(1.05); }
.ab-story-img-frame {
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(201,161,90,0.5);
    pointer-events: none;
    z-index: 2;
}
.ab-story-year {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: linear-gradient(135deg, #C9A15A, #8F6A35);
    color: #0D1B17;
    padding: 1.5rem 2rem;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    z-index: 3;
    font-family: 'Cinzel', serif;
}
.ab-story-year span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    opacity: 0.8;
}
.ab-story-year strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

.ab-signature {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(143,106,53,0.3);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.ab-signature-name {
    font-family: 'Cinzel', serif;
    font-style: italic;
    color: #C9A15A;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
}
.ab-signature-title {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: #D1D5DB;
}

/* ---------- SECTION 3: PILLARS ---------- */
.ab-pillars { padding: 6rem 0; background: #16261F; }
.ab-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.ab-pillar-card {
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.2);
    padding: 3rem 2rem;
    border-radius: 4px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}
.ab-pillar-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,161,90,0.08), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}
.ab-pillar-card:hover {
    transform: translateY(-10px);
    border-color: #C9A15A;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}
.ab-pillar-card:hover::before { opacity: 1; }
.ab-pillar-num {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(201,161,90,0.08);
    line-height: 1;
}
.ab-pillar-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border: 1px solid #C9A15A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A15A;
    font-size: 1.5rem;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}
.ab-pillar-card:hover .ab-pillar-icon {
    background: #C9A15A;
    color: #0D1B17;
    transform: rotate(360deg);
}
.ab-pillar-card h3 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.ab-pillar-card p {
    color: #D1D5DB;
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ---------- SECTION 4: TIMELINE ---------- */
.ab-timeline-section { padding: 8rem 0; }
.ab-timeline-wrap {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2rem;
}
.ab-timeline-wrap::-webkit-scrollbar { display: none; }
.ab-timeline-track {
    display: flex;
    gap: 2rem;
    position: relative;
    padding: 3rem 1rem 1rem;
    min-width: max-content;
}
.ab-timeline-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C9A15A 10%, #C9A15A 90%, transparent);
    transform: translateY(-50%);
    z-index: 0;
}
.ab-timeline-item {
    position: relative;
    flex: 0 0 280px;
    text-align: center;
    padding: 0 1rem;
}
.ab-timeline-year {
    font-family: 'Cinzel', serif;
    color: #C9A15A;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}
.ab-timeline-dot {
    width: 16px;
    height: 16px;
    background: #0D1B17;
    border: 2px solid #C9A15A;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s;
}
.ab-timeline-item:hover .ab-timeline-dot {
    background: #C9A15A;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(201,161,90,0.5);
}
.ab-timeline-content {
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.2);
    padding: 1.5rem;
    border-radius: 4px;
    transition: all 0.4s;
}
.ab-timeline-item:hover .ab-timeline-content {
    border-color: #C9A15A;
    transform: translateY(-5px);
}
.ab-timeline-content h4 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.ab-timeline-content p {
    color: #D1D5DB;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ---------- SECTION 5: STATS ---------- */
.ab-stats {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}
.ab-stats-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.ab-stats-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.ab-stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,27,23,0.88);
    z-index: 2;
}
.ab-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.ab-stat {
    padding: 2rem 1rem;
    border-left: 1px solid rgba(201,161,90,0.2);
    border-right: 1px solid rgba(201,161,90,0.2);
}
.ab-stat:first-child { border-left: none; }
.ab-stat:last-child { border-right: none; }
.ab-stat-num {
    font-family: 'Cinzel', serif;
    color: #C9A15A;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;
}
.ab-stat-plus {
    font-family: 'Cinzel', serif;
    color: #C9A15A;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}
.ab-stat p {
    color: #D1D5DB;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    margin-top: 1rem;
}

/* ---------- SECTION 6: CRAFT ---------- */
.ab-craft { padding: 8rem 0; background: #16261F; }
.ab-craft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.ab-craft-img {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    order: 2;
}
.ab-craft-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}
.ab-craft-img:hover img { transform: scale(1.05); }
.ab-craft-img-frame {
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(201,161,90,0.5);
    pointer-events: none;
    z-index: 2;
}
.ab-craft-content { order: 1; }
.ab-craft-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.ab-craft-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #F5F1E8;
    font-size: 0.95rem;
}
.ab-craft-list i {
    color: #C9A15A;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(201,161,90,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ---------- SECTION 7: TEAM ---------- */
.ab-team { padding: 8rem 0; }
.ab-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.ab-team-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.15);
    border-radius: 4px;
    transition: all 0.5s ease;
}
.ab-team-card:hover {
    transform: translateY(-10px);
    border-color: #C9A15A;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}
.ab-team-img {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(201,161,90,0.3);
    padding: 6px;
    transition: all 0.5s;
}
.ab-team-card:hover .ab-team-img {
    border-color: #C9A15A;
    box-shadow: 0 0 40px rgba(201,161,90,0.2);
}
.ab-team-img img {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.8s;
}
.ab-team-card:hover .ab-team-img img { transform: scale(1.08); }
.ab-team-card h3 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}
.ab-team-role {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: #C9A15A;
    margin-bottom: 1rem;
}
.ab-team-bio {
    font-size: 0.85rem;
    color: #D1D5DB;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.ab-team-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}
.ab-team-social a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201,161,90,0.3);
    color: #C9A15A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s;
}
.ab-team-social a:hover {
    background: #C9A15A;
    color: #0D1B17;
}

/* ---------- SECTION 8: GALLERY ---------- */
.ab-gallery { padding: 6rem 0; background: #16261F; }
.ab-gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
}
.ab-gal-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    display: block;
}
.ab-gal-item.ab-gal-tall { grid-row: span 2; }
.ab-gal-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.ab-gal-item:hover img { transform: scale(1.1); }
.ab-gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,27,23,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A15A;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s;
}
.ab-gal-item:hover .ab-gal-overlay { opacity: 1; }

/* ---------- SECTION 9: TESTIMONIALS ---------- */
.ab-testimonials { padding: 8rem 0; }
.ab-testimonial-card {
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.2);
    padding: 3rem 2.5rem;
    border-radius: 4px;
    text-align: center;
    position: relative;
    margin: 1rem;
}
.ab-testimonial-quote {
    font-size: 3rem;
    color: #C9A15A;
    opacity: 0.3;
    margin-bottom: 1rem;
}
.ab-testimonial-stars {
    color: #C9A15A;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3em;
}
.ab-testimonial-text {
    font-family: 'Cinzel', serif;
    font-style: italic;
    color: #F5F1E8;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.ab-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201,161,90,0.15);
}
.ab-testimonial-author img {
    width: 55px; height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #C9A15A;
}
.ab-testimonial-author h4 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    letter-spacing: 0.05em;
}
.ab-testimonial-author p {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: #C9A15A;
    margin-top: 0.2rem;
}
.ab-testimonials-pagination { margin-top: 2rem; text-align: center; }
.swiper-pagination-bullet {
    background: rgba(201,161,90,0.3) !important;
    opacity: 1 !important;
    width: 30px !important;
    height: 2px !important;
    border-radius: 0 !important;
}
.swiper-pagination-bullet-active {
    background: #C9A15A !important;
    width: 50px !important;
}

/* ---------- SECTION 10: CTA ---------- */
.ab-cta {
    position: relative;
    padding: 10rem 0;
    background: linear-gradient(135deg, rgba(13,27,23,0.95), rgba(22,38,31,0.95)), url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?auto=format&fit=crop&w=1920&q=80') center/cover;
}
.ab-cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201,161,90,0.08) 0%, transparent 60%);
}
.ab-cta-title {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: 0.05em;
}
.ab-cta-title span { color: #C9A15A; font-style: italic; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .ab-story-grid, .ab-craft-grid { grid-template-columns: 1fr; gap: 3rem; }
    .ab-craft-img { order: 1; }
    .ab-craft-content { order: 2; }
    .ab-pillars-grid { grid-template-columns: 1fr; }
    .ab-team-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-stat { border: none; border-bottom: 1px solid rgba(201,161,90,0.2); }
}
@media (max-width: 768px) {
    .ab-hero { height: 80vh; min-height: 500px; }
    .ab-story, .ab-craft, .ab-timeline-section, .ab-team, .ab-testimonials { padding: 5rem 0; }
    .ab-gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .ab-team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .ab-story-year { right: 10px; bottom: -20px; padding: 1rem 1.25rem; }
    .ab-story-year strong { font-size: 2rem; }
}
@media (max-width: 480px) {
    .ab-hero-title { font-size: 2.5rem !important; }
    .ab-stats-grid { grid-template-columns: 1fr; }
}