/* about.css - Lala Builders and Decor - About Us Page Styles */

/* ============================================
   PAGE HERO SECTION
   ============================================ */

.page-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 140px 0 70px;
    text-align: center;
    margin-top: 0;
    width: 100%;
    overflow-x: hidden;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
}

/* ============================================
   STORY SECTION
   ============================================ */

.story-section {
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.story-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.story-stat {
    text-align: center;
}

.story-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.story-stat .stat-label {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ============================================
   FOUNDER PHOTO CARD
   ============================================ */

.founder-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    max-width: 100%;
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.founder-image-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.5s ease;
    display: block;
}

.founder-card:hover .founder-image {
    transform: scale(1.05);
}

.founder-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 40px 20px 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.founder-card:hover .founder-overlay {
    transform: translateY(0);
}

.founder-quote {
    color: white;
    text-align: center;
}

.founder-quote i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: inline-block;
}

.founder-quote p {
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.4;
    margin: 0;
}

.founder-info {
    padding: 25px;
    text-align: center;
    background: var(--white);
}

.founder-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--black);
}

.founder-title {
    display: inline-block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.founder-bio {
    margin: 15px 0;
    padding: 0 10px;
}

.founder-bio p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
}

.founder-achievements {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.founder-achievements span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--off-white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gold);
}

.founder-achievements span i {
    font-size: 0.7rem;
    color: var(--gold);
}

.founder-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.founder-social a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    background: var(--off-white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
    text-decoration: none;
}

.founder-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* ============================================
   VISION & MISSION SECTION
   ============================================ */

.vision-mission-section {
    background: var(--off-white);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vision-card,
.mission-card,
.values-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.vision-card:hover,
.mission-card:hover,
.values-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--black);
}

.vision-card h3,
.mission-card h3,
.values-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.vision-card p,
.mission-card p,
.values-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================
   LEADERSHIP SECTION
   ============================================ */

.leadership-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
}

.leadership-section .section-header h2 {
    color: white;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.leader-card {
    text-align: center;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
}

.leader-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.leader-title {
    display: inline-block;
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.leader-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.leader-social a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.leader-social a:hover {
    background: var(--gold);
    color: var(--black);
}

/* ============================================
   FOUNDER'S JOURNEY TIMELINE - UPDATED TO 2026
   ============================================ */

.founder-journey-section {
    background: var(--off-white);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .gold-accent {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 500;
    display: block;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray);
    font-size: 1rem;
}

/* Timeline Container */
.journey-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Center Line */
.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light), var(--gold-dark), transparent);
    border-radius: 3px;
}

/* Timeline Items */
.journey-item {
    position: relative;
    width: 50%;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.journey-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Left Side Items */
.journey-item:nth-child(odd) {
    left: 0;
    padding-right: 50px;
}

/* Right Side Items */
.journey-item:nth-child(even) {
    left: 50%;
    padding-left: 50px;
}

/* Timeline Dot */
.journey-dot {
    position: absolute;
    top: 20px;
    width: 18px;
    height: 18px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(200,169,81,0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.journey-item:nth-child(odd) .journey-dot {
    right: -9px;
}

.journey-item:nth-child(even) .journey-dot {
    left: -9px;
}

/* Year Badge */
.journey-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
    box-shadow: 0 3px 10px rgba(200,169,81,0.3);
}

/* Content Box */
.journey-content {
    background: var(--white);
    padding: 22px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold);
}

.journey-item:nth-child(even) .journey-content {
    border-left: none;
    border-right: 4px solid var(--gold);
}

.journey-content:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.journey-item:nth-child(even) .journey-content:hover {
    transform: translateX(-5px);
}

.journey-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.journey-content p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   TIMELINE - MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .journey-timeline::before {
        left: 25px;
    }
    
    .journey-item {
        width: 100%;
        left: 0 !important;
        padding-left: 55px !important;
        padding-right: 0 !important;
        margin-bottom: 40px;
    }
    
    .journey-item:nth-child(odd) {
        padding-right: 0;
    }
    
    .journey-item:nth-child(even) {
        left: 0;
        padding-left: 55px;
    }
    
    .journey-dot {
        left: 16px !important;
        right: auto !important;
        top: 22px;
    }
    
    .journey-year {
        font-size: 0.8rem;
        padding: 4px 14px;
        margin-bottom: 10px;
        display: inline-block;
    }
    
    .journey-content {
        padding: 18px 20px;
        border-left: 4px solid var(--gold) !important;
        border-right: none !important;
    }
    
    .journey-content:hover {
        transform: translateX(5px);
    }
    
    .journey-content h4 {
        font-size: 1rem;
    }
    
    .journey-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .founder-journey-section {
        padding: 50px 0;
    }
    
    .journey-timeline::before {
        left: 20px;
    }
    
    .journey-item {
        padding-left: 45px !important;
        margin-bottom: 35px;
    }
    
    .journey-item:nth-child(even) {
        padding-left: 45px;
    }
    
    .journey-dot {
        left: 11px !important;
        width: 12px;
        height: 12px;
        top: 18px;
    }
    
    .journey-year {
        font-size: 0.7rem;
        padding: 3px 10px;
        margin-bottom: 8px;
    }
    
    .journey-content {
        padding: 14px 16px;
        border-radius: 16px;
    }
    
    .journey-content h4 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .journey-content p {
        font-size: 0.75rem;
        line-height: 1.5;
    }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose-section {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--off-white);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--black);
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 20px;
    width: 100%;
}

.cta-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200,169,81,0.3);
    border-radius: 48px;
    padding: 50px 40px;
    text-align: center;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vision-mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founder-image-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 110px 0 50px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .story-content h2 {
        font-size: 1.8rem;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        justify-content: center;
    }
    
    .founder-image-wrapper {
        height: 320px;
    }
    
    .founder-info h3 {
        font-size: 1.3rem;
    }
    
    .founder-quote p {
        font-size: 0.8rem;
    }
    
    .founder-achievements {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-card {
        padding: 40px 25px;
    }
    
    .cta-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 100px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 1.6rem;
    }
    
    .story-content h2 {
        font-size: 1.5rem;
    }
    
    .vision-card,
    .mission-card,
    .values-card {
        padding: 30px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .founder-image-wrapper {
        height: 280px;
    }
    
    .founder-info {
        padding: 20px;
    }
    
    .founder-info h3 {
        font-size: 1.2rem;
    }
    
    .founder-title {
        font-size: 0.75rem;
    }
    
    .founder-bio p {
        font-size: 0.75rem;
    }
    
    .founder-achievements span {
        font-size: 0.65rem;
    }
    
    .founder-social a {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
    
    .cta-card h3 {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}