/* About Us Page Styles */

/* Variables - matching the Elementor theme */
:root {
    --about-primary: #1a1a2e;
    --about-secondary: #16213e;
    --about-accent: #FBC380;
    --about-text: #4a4a4a;
    --about-light-bg: #f8f9fa;
    --about-card-bg: #ffffff;
    --about-vision-bg: #1a1a2e;
}

/* Hero Intro Section */
.about-intro {
    display: flex;
    flex-direction: row;
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}

.about-intro-content {
    padding: 24px;
    text-align: center;
}

.about-intro .kicker {
    color: var(--about-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-intro .title {
    color: var(--about-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-intro .description {
    color: var(--about-text);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.6;
}

/* Hero Banner Section */
.about-hero {
    display: flex;
    min-height: 547px;
    flex-direction: column;
    background-color: #f5f5f5;
    background-image: url('https://cdn.rentyournest.com/images/about/about-hero-bg.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 16px 40px;
    justify-content: center;
    align-items: center;
}

.about-hero-inner {
    text-align: center;
}

.hero-logo {
    width: 200px;
    max-width: 100%;
}

/* Platform Description Section */
.about-platform {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.platform-left,
.platform-right {
    padding: 24px;
    flex: 1;
    min-width: 300px;
}

.platform-left h3 {
    color: var(--about-secondary);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
}

.platform-right p {
    color: var(--about-text);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Facts Section (verifiable, no counters) */
.about-facts {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.facts-title {
    text-align: center;
    color: var(--about-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.facts-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 16px;
}

.fact-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: var(--about-card-bg);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.fact-value {
    color: var(--about-secondary);
    font-size: 28px;
    font-weight: 700;
}

.fact-label {
    color: var(--about-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 8px;
}

.fact-desc {
    color: var(--about-text);
    font-size: 14px;
    line-height: 1.5;
    margin-top: 8px;
}

/* Digital Header Section */
.about-digital-header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: var(--about-light-bg);
    padding: 40px 16px 16px;
}

.digital-header-content {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    padding: 24px;
}

.digital-header-content .kicker {
    color: var(--about-primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.digital-header-content .title {
    color: var(--about-secondary);
    font-size: 2rem;
    font-weight: 700;
}

/* Features Grid Section */
.about-features {
    background-color: var(--about-light-bg);
    padding: 0 0 40px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1360px;
    margin: 0 auto;
    gap: 16px;
    padding: 0 16px;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    min-height: 320px;
    background-color: var(--about-card-bg);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    min-height: 64px;
    margin-bottom: 16px;
}

.feature-icon img {
    width: 32px;
    height: 32px;
}

.feature-title {
    color: var(--about-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--about-text);
    font-size: 14px;
    line-height: 1.6;
}

/* Mission Section */
.about-mission {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.mission-left,
.mission-right {
    padding: 24px;
}

.mission-left {
    flex: 0 0 25%;
    min-width: 200px;
}

.mission-right {
    flex: 1;
    min-width: 300px;
}

.mission-left h3 {
    color: var(--about-secondary);
    font-size: 26px;
    font-weight: 600;
}

.mission-right p {
    color: var(--about-text);
    font-weight: 500;
    line-height: 1.7;
}

/* Vision Section */
.about-vision {
    display: flex;
    min-height: 453px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--about-vision-bg);
    background-image: url('https://cdn.rentyournest.com/images/about/vision-bg.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 24px;
}

.vision-content {
    text-align: center;
    max-width: 800px;
}

.about-vision .kicker {
    color: #F8AD52;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-vision .title {
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 40px;
}

.vision-logo {
    width: 200px;
    max-width: 100%;
}

/* Contact CTA Section */
.about-contact {
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content {
    text-align: center;
    padding: 24px;
}

.contact-content h4 {
    color: var(--about-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.5;
}

.contact-btn {
    display: inline-block;
    background-color: var(--about-primary);
    color: white;
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--about-secondary);
    color: white;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.contact-links a {
    color: #F4971E;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}

.contact-links a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-hero {
        min-height: 420px;
        padding: 80px 16px 16px;
    }
    
    .mission-left {
        flex: 0 0 100%;
    }
    
    .feature-card {
        max-width: 45%;
    }
}

@media (max-width: 767px) {
    .about-intro {
        padding: 16px 0;
    }
    
    .about-intro-content {
        text-align: left;
    }
    
    .about-intro .kicker,
    .about-intro .title,
    .about-intro .description {
        text-align: left;
    }
    
    .about-hero {
        min-height: 265px;
        padding: 40px 16px 16px;
    }
    
    .about-platform {
        padding: 16px 0 0;
    }
    
    .platform-left,
    .platform-right {
        min-width: 100%;
    }
    
    .platform-right {
        padding-top: 0;
    }
    
    .platform-left h3,
    .mission-left h3 {
        text-align: left;
    }
    
    .about-facts {
        padding: 0 0 16px;
    }

    .fact-item {
        min-width: 100%;
    }
    
    .feature-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    .mission-left,
    .mission-right {
        min-width: 100%;
    }
    
    .mission-right {
        padding-top: 0;
    }
    
    .about-vision {
        min-height: auto;
        padding: 40px 24px;
    }
    
    .about-vision .title {
        font-size: 1.5rem;
    }
}
