/* About Page Styles */

:root {
    --primary-red: var(--primary-color, #1B3565);
    --secondary-red: var(--accent-color, #E88D23);
    --dark-bg: #1a1a1a;
    --light-gray: #f8f8f8;
    --text-main: #333;
    --text-muted: #666;
    --transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About Hero */
.about-hero {
    height: 400px;
    background: url('../assets/discover_bg.webp') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.breadcrumbs {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.breadcrumbs a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: white;
}

.breadcrumbs span {
    margin: 0 5px;
    color: #888;
}

/* About Description */
.about-description {
    padding: 100px 0;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-section .image-box {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.split-section .image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.split-section .image-box:hover img {
    transform: scale(1.05);
}

.split-section .text-box {
    flex: 1;
}

.split-section .text-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #111;
    position: relative;
}

.split-section .text-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Vision & Mission */
.vision-mission {
    padding: 80px 0;
    background: var(--dark-bg);
    color: white;
}

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

.vm-card {
    background: #222;
    padding: 60px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
    transition: var(--transition);
}

.vm-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.vm-number {
    font-size: 3rem;
    font-weight: 800;
    position: absolute;
    margin-top: -56px;
}

.vm-content {
    position: relative;
    z-index: 1;
}

.vm-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.vm-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #aaa;
}

.vm-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    opacity: 0.1;
    color: var(--primary-red);
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #faf7f2);
}

.why-choose-us .container {
    max-width: 1400px;
    width: 92%;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: lowercase;
    font-weight: 700;
}

.section-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.section-subtitle {
    max-width: 800px;
    margin: 60px auto 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 600;
}

.section-outro {
    max-width: 800px;
    margin: 60px auto 0;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--primary-red);
    font-weight: 700;
    font-style: italic;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.feature-item {
    background: #ffffff;
    border: 1px solid #f1e6d4;
    border-radius: 12px;
    padding: 40px 25px;
    box-shadow: 0 10px 30px rgba(142, 14, 14, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(142, 14, 14, 0.08);
    border-color: var(--primary-red);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 25px;
    color: var(--primary-red);
    position: relative;
    transition: transform 0.4s ease;
}

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

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.icon-plus {
    position: absolute;
    top: -5px;
    right: -10px;
    font-size: 1.2rem;
    font-weight: 700;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #111;
    font-weight: 700;
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Registration Metadata Card Styling */
.registration-meta {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.why-choose-us .registration-meta {
    margin-top: 10px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.reg-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fdfaf6;
    border: 1px solid #f1e6d4;
    padding: 15px 20px;
    border-radius: 8px;
    flex: 1 1 200px;
    transition: all 0.3s ease;
}

.reg-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(142, 14, 14, 0.05);
    border-color: var(--primary-red);
}

.reg-icon {
    color: var(--primary-red);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.reg-icon svg {
    width: 100%;
    height: 100%;
}

.reg-details {
    display: flex;
    flex-direction: column;
}

.reg-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reg-value {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .vm-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .split-section,
    .split-section.reverse {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .about-description {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
}

/* Custom About Page Subtitle */
.about-subtitle-page {
    display: block;
    font-size: 1.25rem;
    color: var(--secondary-red, #E88D23);
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

/* Core Export Portfolio Grid Section */
.portfolio-section {
    margin-top: 100px;
    margin-bottom: 80px;
    width: 100%;
}

.section-title-center {
    font-size: 2.5rem;
    text-align: center;
    color: #111;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.dots-separator-center {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.dots-separator-center span {
    width: 6px;
    height: 6px;
    background: var(--secondary-red, #E88D23);
    border-radius: 50%;
}

.dots-separator-center span:nth-child(2) {
    width: 12px;
    border-radius: 3px;
}

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

.portfolio-card {
    background: #ffffff;
    border: 1px solid #f1e6d4;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    text-align: center;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(27, 53, 101, 0.08);
    border-color: var(--primary-red, #1B3565);
}

.portfolio-card .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(27, 53, 101, 0.05);
    color: var(--primary-red, #1B3565);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.portfolio-card:hover .card-icon {
    background: var(--primary-red, #1B3565);
    color: #ffffff;
    transform: scale(1.1);
}

.portfolio-card .card-icon svg {
    width: 28px;
    height: 28px;
}

.portfolio-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.portfolio-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted, #666);
}

/* Sustainable Solutions Section */
.solutions-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.solutions-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted, #666);
    text-align: left;
}

.solutions-list li strong {
    color: #111;
}

.solution-check {
    width: 24px;
    height: 24px;
    background: rgba(232, 141, 35, 0.1);
    color: var(--secondary-red, #E88D23);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.solution-check svg {
    width: 14px;
    height: 14px;
}

/* WhatsApp Call to Action Block */
.about-whatsapp-cta-block {
    margin-top: 100px;
    background: linear-gradient(135deg, #1B3565 0%, #102142 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(27, 53, 101, 0.15);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.about-whatsapp-cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(232, 141, 35, 0.1);
    z-index: 0;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-inner h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.cta-inner p {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-inner .whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 35px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(18, 140, 126, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-inner .whatsapp-cta-btn:hover {
    background: linear-gradient(135deg, #2ae06d 0%, #16a090 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(18, 140, 126, 0.4);
}

.cta-inner .whatsapp-cta-btn svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.cta-inner .whatsapp-cta-btn:hover svg {
    transform: rotate(10deg) scale(1.1);
}

/* Responsive elements for new styles */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-inner h3 {
        font-size: 1.8rem;
    }
    
    .about-whatsapp-cta-block {
        padding: 40px 20px;
        margin-top: 60px;
    }
}