﻿:root {
    --primary-color: #0274be;
    --secondary-color: #3a3a3a;
    --dark-bg: #1a2044;
    --light-bg: #f7f7f7;
    --white: #ffffff;
    --coral-letter: #c98b7a;
    --beige-card: #e8ddd3;
    --brown-text: #8b7355;
}

body {
    font-family: 'Noto Sans', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* Hero Section with Background Image */
.hero-section {
    background-image: linear-gradient(rgba(26, 32, 68, 0.7), rgba(2, 116, 190, 0.6)), url('/images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 150px 20px;
    text-align: center;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 10px;
    animation: fadeInDown 1s;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 50px;
    color: var(--white);
    font-weight: 400;
    letter-spacing: 2px;
}

.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
    animation: fadeInDown 1s;
}

/* Value Cards */
.value-cards {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeInUp 1s;
}

.value-card {
    background: var(--beige-card);
    border-radius: 5px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(201, 139, 122, 0.4);
    }

.value-letter {
    font-size: 2.5rem;
    color: var(--white);
    background: var(--coral-letter);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-weight: 700;
    flex-shrink: 0;
}

.value-text {
    font-size: 1rem;
    color: var(--brown-text);
    margin: 0;
    text-align: left;
    font-weight: 400;
}

.hero-chevron {
    color: var(--coral-letter);
    margin-top: 40px;
    animation: bounce 2s infinite;
}

/* Video Section */
.video-section {
    padding: 80px 20px;
    background-color: rgba(26, 32, 68, 0.5);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 15px;
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 15px;
    }

/* Vision & Mission Sections */
.vision-mission-section {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.section-divider {
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 20px auto;
}

.content-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Core Values Section */
.core-values-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-bg), rgba(2, 116, 190, 0.2));
}

.core-value-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    height: 100%;
}

    .core-value-card:hover {
        background: rgba(2, 116, 190, 0.2);
        border-color: var(--primary-color);
        transform: translateY(-5px);
    }

    .core-value-card h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

/* About Section */
.about-section {
    padding: 80px 20px;
    text-align: center;
    background: rgba(26, 32, 68, 0.8);
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.about-hero {
    background: linear-gradient(rgba(26, 32, 68, 0.65), rgba(26, 32, 68, 0.65)), url('/images/about-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px 100px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .about-hero h1 {
        font-size: 3.5rem;
        color: var(--white);
        margin: 0;
        letter-spacing: 3px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        font-weight: 700;
    }

.about-hero-logo {
    width: 100px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    animation: fadeInDown 1s;
}

.about-hero-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(201, 139, 122, 0.9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

    .about-hero-icon i {
        color: var(--white);
        margin: -8px 0;
    }

    .about-hero-icon .fa-chevron-down {
        font-size: 1rem;
    }

    .about-hero-icon .fa-map-marker-alt {
        font-size: 1.5rem;
        margin-top: -5px;
    }

.about-content-section {
    padding: 80px 20px;
}

.about-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.story-section {
    padding: 80px 20px;
    text-align: center;
    background: rgba(26, 32, 68, 0.3);
}

    .story-section p {
        max-width: 900px;
        margin: 0 auto 20px;
        line-height: 1.8;
    }

.brand-image-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--dark-bg), rgba(2, 116, 190, 0.2));
    text-align: center;
}

    .brand-image-section img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }

/* Team Section */
.team-section {
    padding: 80px 20px;
    background: rgba(26, 32, 68, 0.5);
}

.team-intro {
    text-align: center;
    margin-bottom: 60px;
}

    .team-intro h6 {
        color: var(--primary-color);
        font-size: 1rem;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .team-intro h1 {
        font-size: 3rem;
        margin: 0;
    }

.team-member-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    height: 100%;
}

    .team-member-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.1);
    }

.team-member-image {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 2 / 3;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

.team-member-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.team-member-card p {
    color: var(--light-bg);
    margin-bottom: 15px;
}

.team-description {
    background: rgba(2, 116, 190, 0.2);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #0077b5;
    color: var(--white);
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    margin-top: 15px;
    transition: all 0.3s;
    text-decoration: none;
}

    .social-link:hover {
        background-color: var(--primary-color);
        transform: scale(1.1);
        color: var(--white);
    }

    .social-link i {
        font-size: 1.2rem;
    }

/* Partnership Section */
.partnership-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(26, 32, 68, 0.9), rgba(2, 116, 190, 0.3));
    text-align: center;
}

    .partnership-section h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

.partnership-divider {
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    margin: 20px auto;
}

.partnership-logo {
    max-width: 225px;
    margin: 30px auto;
}

.partner-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.partner-role {
    color: var(--light-bg);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.partner-description {
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.btn-partnership {
    display: inline-block;
    margin: 10px;
}

/* ========================================
   ABOUT PAGE - VISION & MISSION SECTION
   ======================================== */

.vision-mission-about-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(26, 32, 68, 0.6) 0%, rgba(2, 116, 190, 0.15) 100%);
}

.vm-section-label {
    text-align: center;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.vm-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .vm-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    }

.vm-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

    .vm-card-header h3 {
        font-size: 1.8rem;
        margin: 0;
        color: var(--white);
    }

.vm-icon-wrap {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color), rgba(2, 116, 190, 0.6));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .vm-icon-wrap i {
        font-size: 1.3rem;
        color: var(--white);
    }

.vm-summary {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.6;
}

.vm-detail {
    color: var(--light-bg);
    line-height: 1.9;
    font-size: 1rem;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
}

[dir="rtl"] .vm-detail {
    border-left: none;
    border-right: 3px solid var(--primary-color);
    padding-left: 0;
    padding-right: 20px;
}

.vm-pillars {
    margin-top: 50px;
}

    .vm-pillars h4 {
        font-size: 1.5rem;
        color: var(--white);
    }

.vm-pillar-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}

    .vm-pillar-card:hover {
        background: rgba(2, 116, 190, 0.15);
        border-color: var(--primary-color);
        transform: translateY(-5px);
    }

.vm-pillar-icon {
    width: 60px;
    height: 60px;
    background: rgba(2, 116, 190, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

    .vm-pillar-icon i {
        font-size: 1.4rem;
        color: var(--primary-color);
    }

.vm-pillar-card h5 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
}

.vm-pillar-card p {
    color: var(--light-bg);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

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

    .vm-detail {
        border-left: none;
        border-top: 2px solid var(--primary-color);
        padding-left: 0;
        padding-top: 15px;
        margin-top: 15px;
    }

    [dir="rtl"] .vm-detail {
        border-right: none;
        border-top: 2px solid var(--primary-color);
        padding-right: 0;
        padding-top: 15px;
        margin-top: 15px;
    }

    .vm-card-header h3 {
        font-size: 1.4rem;
    }
}

/* ========================================
   BUSINESS ASPECTS PAGE STYLES
   ======================================== */

.business-hero {
    background: linear-gradient(rgba(26, 32, 68, 0.65), rgba(26, 32, 68, 0.65)), url('/images/business-aspects-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px 100px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .business-hero h1 {
        color: #ffffff;
        font-size: 3.5rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-top: 30px;
        letter-spacing: 3px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    }

.business-section {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.business-section-alt {
    background-color: #ffffff;
}

.business-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .business-image:hover {
        transform: scale(1.05);
    }

.business-content {
    padding: 20px;
}

.business-point {
    color: #4B4F58;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
}

    .business-point::before {
        content: "→";
        position: absolute;
        left: 0;
        color: #0274be;
        font-size: 1.5rem;
        font-weight: bold;
    }

.business-content-centered {
    padding: 20px;
}

.business-box {
    color: #4B4F58;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
}

    .business-box::before {
        content: "→";
        position: absolute;
        left: 0;
        color: #0274be;
        font-size: 1.5rem;
        font-weight: bold;
    }

    .business-box h4 {
        color: #4B4F58;
        font-size: 1.25rem;
        font-weight: 600;
        margin: 0;
        text-transform: none;
    }

.back-home-section {
    padding: 60px 0;
    background-color: #1a2044;
}

    .back-home-section .btn-know-more {
        background-color: #0274be;
        color: #ffffff;
        padding: 15px 40px;
        border-radius: 30px;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 14px;
        transition: all 0.3s ease;
        display: inline-block;
        text-decoration: none;
    }

        .back-home-section .btn-know-more:hover {
            background-color: #3a3a3a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

/* ========================================
   SHARED COMPONENTS
   ======================================== */

.btn-know-more {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.875rem;
}

    .btn-know-more:hover {
        background-color: var(--secondary-color);
        transform: scale(1.05);
        color: var(--white);
    }

.footer-contact {
    background: linear-gradient(135deg, var(--dark-bg), rgba(2, 116, 190, 0.1));
    padding: 60px 20px;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

    .social-icons a:hover {
        color: var(--primary-color);
    }

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .value-card {
        min-width: 100%;
    }

    .about-hero {
        padding: 80px 20px 60px;
        min-height: 320px;
    }

        .about-hero h1 {
            font-size: 2rem;
            letter-spacing: 2px;
        }

    .about-hero-logo {
        width: 80px;
        margin-bottom: 20px;
    }

    .about-hero-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

        .about-hero-icon .fa-chevron-down {
            font-size: 0.8rem;
        }

        .about-hero-icon .fa-map-marker-alt {
            font-size: 1.2rem;
        }

    .team-intro h1 {
        font-size: 2rem;
    }

    .team-member-card {
        margin-bottom: 30px;
    }

    .business-hero {
        padding: 80px 20px 60px;
        min-height: 320px;
    }

        .business-hero h1 {
            font-size: 2rem;
        }

    .business-section {
        padding: 50px 0;
    }

    .business-point {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .business-content {
        padding: 10px;
    }

    .business-box {
        padding-left: 25px;
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

        .business-box h4 {
            font-size: 1.1rem;
        }
}

@media (max-width: 544px) {
    .business-hero h1 {
        font-size: 1.8rem;
    }

    .business-point {
        font-size: 1rem;
        padding-left: 25px;
    }

    .business-box {
        font-size: 1rem;
    }

        .business-box h4 {
            font-size: 1rem;
        }
}
