/* ===================================
   New Home Page Sections Styles
   =================================== */

/* Introduction Section */
.intro-section {
    padding: 80px 0;
}

.intro-title {
    font-size: 42px;
    font-weight: 800;
    color: #182841;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'Cairo', sans-serif;
}

.intro-subtitle {
    font-size: 20px;
    color: #DF416A;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Cairo', sans-serif;
}

.intro-description {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Cairo', sans-serif;
}

.journey-steps {
    margin: 30px 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #DF416A;
    transition: all 0.3s ease;
}

[dir="rtl"] .step-item {
    border-left: none;
    border-right: 4px solid #DF416A;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
}

[dir="rtl"] .step-item:hover {
    transform: translateX(-10px);
}

.step-number {
    font-size: 24px;
    font-weight: 800;
    color: #DF416A;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(223, 65, 106, 0.2);
}

.step-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.step-content i {
    font-size: 24px;
    color: #182841;
}

.step-content h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #182841;
    font-family: 'Cairo', sans-serif;
}

.closing-text {
    font-size: 16px;
    color: #555;
    margin-top: 30px;
    font-style: italic;
    font-family: 'Cairo', sans-serif;
}

.cta-buttons-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-buttons-group.justify-content-center {
    justify-content: center;
}

.rts-btn.btn-secondary {
    background: transparent;
    border: 2px solid #DF416A;
    color: #DF416A;
}

.rts-btn.btn-secondary:hover {
    background: #DF416A;
    color: white;
}

/* Intro Image Wrapper with Decorations */
.intro-image-wrapper {
    position: relative;
    padding: 30px;
}

.intro-video-container {
    position: relative;
    z-index: 2;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.intro-video-container .instagram-media {
    margin: 0 !important;
    min-width: 100% !important;
    max-width: 100% !important;
    border-radius: 25px !important;
}

/* Intro Decorative Shapes */
.intro-decoration-shape {
    position: absolute;
    z-index: 1;
    border-radius: 25px;
}

.intro-decoration-shape.intro-shape-1 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #182841 0%, #2d4a6e 100%);
    top: -20px;
    right: -20px;
    opacity: 0.12;
    animation: float 7s ease-in-out infinite;
}

[dir="rtl"] .intro-decoration-shape.intro-shape-1 {
    right: auto;
    left: -20px;
}

.intro-decoration-shape.intro-shape-2 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #DF416A 0%, #ff6b95 100%);
    bottom: -15px;
    left: -15px;
    opacity: 0.12;
    animation: float 9s ease-in-out infinite reverse;
}

[dir="rtl"] .intro-decoration-shape.intro-shape-2 {
    left: auto;
    right: -15px;
}

.intro-decoration-shape.intro-shape-3 {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #DF416A 0%, #182841 100%);
    top: 40%;
    left: -30px;
    opacity: 0.15;
    transform: rotate(30deg);
    animation: rotate-pulse 12s linear infinite;
}

[dir="rtl"] .intro-decoration-shape.intro-shape-3 {
    left: auto;
    right: -30px;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Intro Stats Badge */
.intro-stats-badge {
    position: absolute;
    top: 60px;
    left: -30px;
    background: white;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    z-index: 3;
    animation: floatBadge 3.5s ease-in-out infinite;
}

[dir="rtl"] .intro-stats-badge {
    left: auto;
    right: -30px;
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stats-item i {
    font-size: 32px;
    color: #DF416A;
}

.stats-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.stats-number {
    font-size: 24px;
    font-weight: 800;
    color: #182841;
    line-height: 1;
    font-family: 'Cairo', sans-serif;
}

.stats-label {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #DF416A;
    box-shadow: 0 20px 50px rgba(223, 65, 106, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #DF416A 0%, #ff6b95 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 36px;
    color: white;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: #182841;
    margin-bottom: 15px;
    font-family: 'Cairo', sans-serif;
}

.service-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    font-family: 'Cairo', sans-serif;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #182841;
    margin-bottom: 30px;
    font-family: 'Cairo', sans-serif;
}

/* Why Malaysia Section */
.why-malaysia-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.malaysia-feature-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #f0f0f0;
}

[dir="rtl"] .malaysia-feature-card {
    text-align: right;
}

.malaysia-feature-card:hover {
    transform: translateY(-10px);
    border-color: #DF416A;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, #182841 0%, #2d4a6e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.malaysia-feature-card:hover .feature-icon-circle {
    background: linear-gradient(135deg, #DF416A 0%, #ff6b95 100%);
    transform: scale(1.1);
}

.feature-icon-circle i {
    font-size: 30px;
    color: white;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #182841;
    margin-bottom: 12px;
    font-family: 'Cairo', sans-serif;
}

.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-family: 'Cairo', sans-serif;
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    overflow: hidden;
}

.why-us-image-wrapper {
    position: relative;
    padding: 40px;
}

.why-us-main-image {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    display: block;
}

/* Decorative Shapes */
.image-decoration-shape {
    position: absolute;
    z-index: 1;
    border-radius: 30px;
}

.image-decoration-shape.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #DF416A 0%, #ff6b95 100%);
    top: 0;
    left: 0;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.image-decoration-shape.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #182841 0%, #2d4a6e 100%);
    bottom: 40px;
    right: 0;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite reverse;
}

.image-decoration-shape.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #DF416A 0%, #182841 100%);
    top: 50%;
    right: -20px;
    opacity: 0.2;
    transform: rotate(45deg);
    animation: rotate-pulse 10s linear infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate-pulse {
    0%, 100% {
        transform: rotate(45deg) scale(1);
    }
    50% {
        transform: rotate(225deg) scale(1.1);
    }
}

/* Image Badge */
.image-badge {
    position: absolute;
    bottom: 80px;
    right: 60px;
    background: white;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
    animation: floatBadge 3s ease-in-out infinite;
}

[dir="rtl"] .image-badge {
    right: auto;
    left: 60px;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DF416A 0%, #ff6b95 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 28px;
    color: white;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge-number {
    font-size: 28px;
    font-weight: 800;
    color: #182841;
    line-height: 1;
    font-family: 'Cairo', sans-serif;
}

.badge-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
}

.why-us-content {
    padding: 0;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: #182841;
    margin-bottom: 20px;
    font-family: 'Cairo', sans-serif;
}

.section-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
    font-family: 'Cairo', sans-serif;
}

.why-us-features {
    margin: 30px 0;
}

.feature-item-horizontal {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

[dir="rtl"] .feature-item-horizontal {
    border-left: none;
    border-right: 4px solid transparent;
}

.feature-item-horizontal:hover {
    background: white;
    border-left-color: #DF416A;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateX(10px);
}

[dir="rtl"] .feature-item-horizontal:hover {
    border-right-color: #DF416A;
    border-left-color: transparent;
    transform: translateX(-10px);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #DF416A 0%, #ff6b95 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-box i {
    font-size: 28px;
    color: white;
}

.feature-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: #182841;
    margin-bottom: 8px;
    font-family: 'Cairo', sans-serif;
}

.feature-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-family: 'Cairo', sans-serif;
}

.closing-statement {
    font-size: 16px;
    color: #555;
    font-style: italic;
    margin-top: 20px;
    font-family: 'Cairo', sans-serif;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .intro-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 30px;
    }

    .cta-title {
        font-size: 26px;
    }

    .step-item {
        padding: 15px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .intro-image-wrapper {
        padding: 20px;
    }

    .intro-decoration-shape.intro-shape-1 {
        width: 140px;
        height: 140px;
    }

    .intro-decoration-shape.intro-shape-2 {
        width: 110px;
        height: 110px;
    }

    .intro-decoration-shape.intro-shape-3 {
        width: 70px;
        height: 70px;
    }

    .intro-stats-badge {
        padding: 15px 20px;
        top: 40px;
        left: -20px;
    }

    [dir="rtl"] .intro-stats-badge {
        right: -20px;
    }

    .stats-item i {
        font-size: 28px;
    }

    .stats-number {
        font-size: 20px;
    }

    .stats-label {
        font-size: 12px;
    }

    .why-us-image-wrapper {
        padding: 20px;
    }

    .image-decoration-shape.shape-1 {
        width: 150px;
        height: 150px;
    }

    .image-decoration-shape.shape-2 {
        width: 100px;
        height: 100px;
    }

    .image-decoration-shape.shape-3 {
        width: 80px;
        height: 80px;
    }

    .image-badge {
        bottom: 40px;
        right: 30px;
        padding: 20px 25px;
    }

    [dir="rtl"] .image-badge {
        left: 30px;
    }

    .badge-icon {
        width: 50px;
        height: 50px;
    }

    .badge-icon i {
        font-size: 24px;
    }

    .badge-number {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .intro-title {
        font-size: 28px;
    }

    .intro-subtitle {
        font-size: 18px;
    }

    .intro-description {
        font-size: 16px;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons-group {
        flex-direction: column;
    }

    .cta-buttons-group a {
        width: 100%;
        text-align: center;
    }

    .feature-item-horizontal {
        flex-direction: column;
        text-align: center;
    }

    .intro-image-wrapper {
        padding: 10px;
        margin-bottom: 30px;
    }

    .intro-decoration-shape.intro-shape-1 {
        width: 100px;
        height: 100px;
        top: -10px;
        right: -10px;
    }

    [dir="rtl"] .intro-decoration-shape.intro-shape-1 {
        left: -10px;
    }

    .intro-decoration-shape.intro-shape-2 {
        width: 80px;
        height: 80px;
        bottom: -10px;
        left: -10px;
    }

    [dir="rtl"] .intro-decoration-shape.intro-shape-2 {
        right: -10px;
    }

    .intro-decoration-shape.intro-shape-3 {
        width: 50px;
        height: 50px;
        left: -15px;
    }

    [dir="rtl"] .intro-decoration-shape.intro-shape-3 {
        right: -15px;
    }

    .intro-stats-badge {
        padding: 12px 15px;
        top: 30px;
        left: -15px;
    }

    [dir="rtl"] .intro-stats-badge {
        right: -15px;
    }

    .stats-item {
        gap: 10px;
    }

    .stats-item i {
        font-size: 24px;
    }

    .stats-number {
        font-size: 18px;
    }

    .stats-label {
        font-size: 11px;
    }

    .service-title {
        font-size: 18px;
    }

    .feature-title {
        font-size: 16px;
    }

    .malaysia-feature-card {
        text-align: left;
    }

    [dir="rtl"] .malaysia-feature-card {
        text-align: right;
    }

    .why-us-image-wrapper {
        padding: 10px;
        margin-bottom: 30px;
    }

    .image-decoration-shape.shape-1 {
        width: 100px;
        height: 100px;
    }

    .image-decoration-shape.shape-2 {
        width: 80px;
        height: 80px;
        bottom: 20px;
    }

    .image-decoration-shape.shape-3 {
        width: 60px;
        height: 60px;
    }

    .image-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
        gap: 15px;
    }

    [dir="rtl"] .image-badge {
        left: 20px;
    }

    .badge-icon {
        width: 45px;
        height: 45px;
    }

    .badge-icon i {
        font-size: 20px;
    }

    .badge-number {
        font-size: 20px;
    }

    .badge-label {
        font-size: 12px;
    }
}

/* Light Gray Background Helper */
.bg-light-gray {
    background-color: #f8f9fa;
}

/* Rounded Image Helper */
.rounded-image {
    border-radius: 20px;
}
