/* ================================
   PAGES STYLESHEET - TASWEERKASH
   ================================ */

/* Page Header */
.page-header {
    position: relative;
    padding: 200px 0 120px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(201, 169, 97, 0.1), transparent 50%);
}

.page-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

/* About Detailed */
.about-detailed {
    padding: 100px 0;
    background: var(--white);
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.intro-text {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-item {
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.grid-item.large {
    grid-row: span 2;
    height: 620px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.grid-item:hover img {
    transform: scale(1.1);
}

/* Founder Section */
.founder-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.founder-image-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.founder-image-wrapper img {
    max-width: 100%;
    height: auto;
}

.founder-position {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

.founder-bio h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.founder-bio p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.founder-achievements {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.achievement-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.achievement-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.achievement-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.achievement-text h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.achievement-text p {
    font-size: 14px;
    color: var(--text-light);
}

/* Stats Section */
.stats-section {
    background: var(--primary-color);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-box {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.stat-box:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.stat-box .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-box .stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
}

/* Journey/Timeline Section */
.journey-section {
    background: var(--white);
    padding: 100px 0;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--accent-color));
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-year {
    grid-column: 1;
    text-align: right;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px var(--bg-light);
}

.timeline-item:nth-child(odd) .timeline-year::after {
    right: -40px;
}

.timeline-item:nth-child(even) .timeline-year::after {
    left: -40px;
}

.timeline-content {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Page Specific */
.services-detailed {
    background: var(--white);
    padding: 100px 0;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.service-feature-card {
    display: flex;
    gap: 25px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 20px;
    transition: var(--transition);
}

.service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-feature-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.service-feature-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-feature-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 5px;
}

.gallery-info p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

/* Contact Page */
.contact-section {
    background: var(--white);
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.contact-info-box h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 24px;
    color: var(--secondary-color);
}

.info-text h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.info-text p,
.info-text a {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: none;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 50px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.blog-title a:hover {
    color: var(--secondary-color);
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.blog-read-more:hover {
    gap: 10px;
}

/* Map Section */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .page-title {
        font-size: 48px;
    }
    
    .about-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founder-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .about-images-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-item.large {
        grid-row: span 1;
        height: 300px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 60px;
    }
    
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(even) .timeline-year {
        grid-column: 1;
    }
    
    .timeline-item:nth-child(even) .timeline-year {
        text-align: left;
    }
    
    .timeline-year::after {
        left: -40px !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}
