/* ============================================
   ABOUT PAGE - THE GOOD SLEEP
   ============================================ */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(15, 76, 117, 0.95), rgba(50, 130, 184, 0.90)), 
                url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 25px;
    font-weight: 300;
}

.header-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header-breadcrumb a:hover {
    opacity: 0.8;
}

.header-breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

/* About Content */
.about-content {
    padding: 100px 0;
    background: #f8f9fa;
}

/* Section Helpers */
.section-subtitle {
    display: inline-block;
    color: #3282b8;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1a1a2e;
    margin: 15px 0 20px;
    font-weight: 700;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Intro */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    background: white;
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1a1a2e;
    margin: 15px 0 30px;
    font-weight: 700;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.founder-signature {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.signature-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #0f4c75;
    font-style: italic;
    font-weight: 600;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.image-badge {
    position: absolute;
    bottom: -25px;
    right: 30px;
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(15, 76, 117, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    font-size: 1.5rem;
}

.badge-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 3px;
}

.badge-text span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    padding: 60px;
    border-radius: 25px;
    margin-bottom: 100px;
    box-shadow: 0 15px 50px rgba(15, 76, 117, 0.3);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    color: white;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission & Vision Section */
.mission-vision-section {
    margin-bottom: 100px;
}

.mv-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border-top: 5px solid #0f4c75;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.mission-card {
    border-top-color: #0f4c75;
}

.vision-card {
    border-top-color: #3282b8;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.mv-icon i {
    font-size: 2.2rem;
    color: white;
}

.mv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.mv-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.mission-points,
.vision-points {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mission-points li,
.vision-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #666;
}

.mission-points i,
.vision-points i {
    color: #0f4c75;
    font-size: 1.2rem;
}

/* Values Section */
.values-section {
    margin-bottom: 100px;
}

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

.value-item {
    background: white;
    text-align: center;
    padding: 45px 35px;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.value-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #3282b8;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #bbe1fa, #d4edff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.value-item:hover .value-icon {
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    transform: scale(1.1) rotate(5deg);
}

.value-icon i {
    font-size: 2.2rem;
    color: #0f4c75;
    transition: color 0.4s ease;
}

.value-item:hover .value-icon i {
    color: white;
}

.value-item h3 {
    font-size: 1.6rem;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-item p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

/* Why Choose Section */
.team-section {
    margin-bottom: 100px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.why-item:hover {
    border-color: #0f4c75;
    box-shadow: 0 10px 35px rgba(15, 76, 117, 0.15);
    transform: translateY(-8px);
}

.why-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.4s ease;
}

.why-item:hover .why-icon {
    transform: scale(1.15) rotate(360deg);
}

.why-icon i {
    font-size: 2.2rem;
    color: white;
}

.why-item h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-item p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Manufacturing Process */
.process-section {
    margin-bottom: 100px;
    background: white;
    padding: 80px 60px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #0f4c75, #3282b8);
}

.timeline-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    flex: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    background: #bbe1fa;
    transform: translateX(10px);
}

.timeline-content h4 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-weight: 700;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Certifications Section */
.certifications {
    margin-bottom: 100px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.cert-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.cert-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #bbe1fa, #d4edff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.cert-item:hover .cert-icon {
    background: linear-gradient(135deg, #0f4c75, #3282b8);
}

.cert-icon i {
    font-size: 2.2rem;
    color: #0f4c75;
    transition: color 0.4s ease;
}

.cert-item:hover .cert-icon i {
    color: white;
}

.cert-item h4 {
    font-size: 1.4rem;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-weight: 700;
}

.cert-item p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Testimonial Section */
.testimonial-section {
    margin-bottom: 100px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid #0f4c75;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: #1a1a2e;
}

.testimonial-author span {
    font-size: 0.95rem;
    color: #999;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    padding: 80px 60px;
    border-radius: 25px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 50px rgba(15, 76, 117, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: white;
    color: #0f4c75;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: #0f4c75;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #0f4c75;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .page-header h1 {
        font-size: 3rem;
    }

    .about-intro {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .section-header-center h2 {
        font-size: 2.5rem;
    }

    .process-section {
        padding: 60px 40px;
    }

    .process-timeline::before {
        left: 40px;
    }

    .timeline-number {
        width: 80px;
        height: 80px;
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 100px 0 80px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .about-intro {
        padding: 30px;
        margin-bottom: 60px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .stats-section {
        padding: 40px 30px;
        margin-bottom: 60px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .section-header-center h2 {
        font-size: 2rem;
    }

    .values-grid,
    .why-choose-grid,
    .cert-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .process-section {
        padding: 40px 25px;
    }

    .process-timeline::before {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .timeline-number {
        width: 70px;
        height: 70px;
        font-size: 1.4rem;
    }

    .cta-section {
        padding: 60px 30px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.9rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .section-header-center h2 {
        font-size: 1.8rem;
    }

    .mv-card {
        padding: 35px 25px;
    }

    .value-item,
    .why-item,
    .cert-item {
        padding: 30px 25px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }
}
