/* =============================
   About Company Page Styles
   ============================= */


/* Hero Section */

.about-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('../images/single-property.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.slider-header {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-content .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.diagonal {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom right, transparent 49.5%, #05103A 50%);
    z-index: 1;
}


/* About Section */

.about-section {
    padding: 80px 0;
    background-color: #05103A;
    color: #fff;
}

.about-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-media {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.about-media img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-media:hover img {
    transform: scale(1.03);
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-title {
    font-size: clamp(1.6rem, 3vw, 1.5rem);
    margin-bottom: 1.5rem;
    color: #ffb367;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}


/* Vision, Mission & Values Section */

.vmv-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.vmv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vmv-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.vmv-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 179, 103, 0.1);
    color: #ffb367;
}

.vmv-icon svg {
    width: 30px;
    height: 30px;
}

.vmv-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #05103A;
}

.vmv-desc {
    color: #666;
    line-height: 1.7;
}

.vision-card .vmv-icon {
    background: rgba(75, 192, 192, 0.1);
    color: #4bc0c0;
}

.mission-card .vmv-icon {
    background: rgba(54, 162, 235, 0.1);
    color: #36a2eb;
}

.values-card .vmv-icon {
    background: rgba(255, 99, 132, 0.1);
    color: #ff6384;
}


/* Why Choose Us Section */

.why-us-section {
    padding: 80px 0;
    background-color: #05103A;
    color: #fff;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 3rem;
    color: #ffb367;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, background 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 179, 103, 0.1);
    color: #ffb367;
}

.feature-icon svg {
    width: 25px;
    height: 25px;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}


/* Team Section */

.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
    height: 300px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #05103A;
}

.team-position {
    color: #ffb367;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    color: #666;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: #ffb367;
}


/* CTA Section */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(5, 16, 58, 0.9), rgba(5, 16, 58, 0.9)), url('../images/cta-bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
}

.cta-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    background: #ffb367;
    color: #05103A;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/* Responsive Adjustments */

@media (max-width: 768px) {
    .about-wrap {
        flex-direction: column;
    }
    .about-media,
    .about-content {
        min-width: 100%;
    }
    .team-img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .vmv-container,
    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}