/*
 Theme Name:  Liana Theme Child
 Theme URI:   https://www.lianamobility.com
 Description: Child theme for liana-theme-1
 Author:      Liana Dev Team
 Template:    liana-theme-1
 Version:     1.0.0
*/

@import url("../liana-theme-1/style.css");

/* ========================================
   HERO SECTION – PORSCHE STYLE
======================================== */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    direction: rtl;
}

/* Background Video */
.hero-bg-video,
.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    right: 0;
}

/* Image */
.hero-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* Content */
.hero-content {
    position: absolute;
    bottom: 18%;
    right: 5%;
    text-align: right;
    z-index: 20;
    max-width: 550px;
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 18px;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 25px;
}

.hero-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: #000;
    border-radius: 100px;
    font-size: 18px;
    text-decoration: none;
    transition: .3s;
}

.hero-btn:hover {
    background: #000;
    color: #fff;
}

/* Responsive */
@media(max-width:768px){
    .hero-title{
        font-size: 32px;
    }
    .hero-content{
        bottom: 12%;
        right: 20px;
        left: 20px;
    }
}

/* =============================
   PRODUCTS SLIDER – PORSCHE STYLE
============================= */

.products-slider-section {
    direction: rtl;
}

.ps-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.ps-subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 35px;
}

.product-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s;
}

.product-item:hover {
    transform: translateY(-6px);
}

.product-item .p-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.p-title {
    font-size: 20px;
    margin: 15px 0 5px;
    font-weight: 600;
    color: #000;
    padding: 0 15px;
}

.p-short {
    padding: 0 15px 15px;
    color: #666;
    font-size: 15px;
}

/* Swiper Arrows */
.ps-next,
.ps-prev {
    color: #000;
}

.ps-next:hover,
.ps-prev:hover {
    color: #888;
}

/* =====================================
   NOTICES SECTION – PORSCHE STYLE
===================================== */

.notices-section {
    direction: rtl;
}

.notices-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.notices-subtitle {
    font-size: 17px;
    color: #555;
    margin-bottom: 35px;
}

.notices-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.notice-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    transition: .25s;
}

.notice-item:hover {
    transform: translateY(-7px);
}

.notice-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.notice-title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.notice-content {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.notice-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 15px;
    color: #000;
    text-decoration: underline;
    transition: .2s;
}

.notice-link:hover {
    color: #777;
}

/* Responsive */
@media(max-width: 992px){
    .notices-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .notices-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   NEWS SECTION — PORSCHE STYLE
============================== */

.news-section {
    direction: rtl;
}

.ns-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ns-subtitle {
    font-size: 17px;
    margin-bottom: 35px;
    color: #555;
}

/* GRID Mode */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.news-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,.07);
    transition: .25s;
}

.news-item:hover {
    transform: translateY(-6px);
}

.news-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.news-body {
    padding: 18px;
}

.news-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.news-excerpt {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
}

.news-btn {
    display: inline-block;
    font-size: 15px;
    text-decoration: underline;
    color: #000;
}

.news-btn:hover {
    color: #666;
}

/* Responsive */
@media(max-width: 992px){
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* =====================================
   SERVICES SECTION — PORSCHE STYLE
===================================== */

.services-section {
    direction: rtl;
}

.srv-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.srv-subtitle {
    font-size: 17px;
    margin-bottom: 35px;
    color: #555;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ITEM */
.service-item {
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
    transition: .25s ease;
    text-align: right;
}

.service-item:hover {
    transform: translateY(-6px);
}

/* ICON */
.srv-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
    object-fit: contain;
}

/* TITLE */
.srv-item-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* TEXT */
.srv-item-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* BUTTON */
.srv-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color: #fff !important;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.srv-btn:hover {
    background: #444;
}

/* Responsive */
@media(max-width: 992px){
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* =====================================
   ABOUT SECTION – PORSCHE STYLE
===================================== */

.about-section {
    direction: rtl;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Reverse layout */
.about-reverse .about-wrapper {
    flex-direction: row-reverse;
}

/* IMAGE */
.about-image img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    max-height: 520px;
}

/* CONTENT */
.about-content {
    width: 100%;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 22px;
}

.about-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* HIGHLIGHTS */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.highlight-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.highlight-text {
    font-size: 15px;
    color: #666;
}

/* Responsive */
@media(max-width: 992px){
    .about-wrapper {
        flex-direction: column;
    }
}

@media(max-width: 600px){
    .about-highlights {
        grid-template-columns: 1fr;
    }
}

/* =====================================
   CTA SECTION – PORSCHE STYLE
===================================== */

.cta-section {
    direction: rtl;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Alignments */
.cta-align-center { text-align: center; }
.cta-align-right { text-align: right; }
.cta-align-left  { text-align: left; }

/* Content */
.cta-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.85);
}

.cta-desc {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
}

/* Button */
.cta-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #fff;
    color: #000 !important;
    border-radius: 100px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #000;
    color: #fff !important;
}

/* Background fixes */
.cta-section {
    background-size: cover;
    background-position: center;
}

/* Responsive */
@media(max-width: 768px){
    .cta-title {
        font-size: 28px;
    }
    .cta-desc {
        font-size: 16px;
    }
}

/* =====================================
   VIDEO INTRO – PORSCHE STYLE
===================================== */

.video-intro-section {
    direction: rtl;
    position: relative;
}

.video-intro-wrapper {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    border-radius: 16px;
}

/* VIDEO */
.video-intro {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
}

/* OVERLAY */
.video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}

/* CONTENT */
.video-content {
    position: absolute;
    bottom: 18%;
    right: 5%;
    z-index: 10;
    max-width: 500px;
    color: #fff;
    text-align: right;
}

.video-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.video-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.85);
}

.video-desc {
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

/* BUTTON */
.video-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #fff;
    color: #000 !important;
    border-radius: 100px;
    text-decoration: none;
    font-size: 17px;
    transition: .3s;
}

.video-btn:hover {
    background: #000;
    color: #fff !important;
}

/* Responsive */
@media(max-width: 768px){
    .video-intro-wrapper {
        height: 60vh;
    }
    .video-title {
        font-size: 28px;
    }
    .video-content {
        right: 20px;
        left: 20px;
        bottom: 12%;
    }
}

/* ============================
   SPACER SECTION
============================ */

.spacer-section {
    width: 100%;
    height: var(--sp-desktop);
}

@media (max-width: 992px){
    .spacer-section {
        height: var(--sp-tablet);
    }
}

@media (max-width: 600px){
    .spacer-section {
        height: var(--sp-mobile);
    }
}

/* =====================================
   CUSTOM BLOCK SECTION
===================================== */

.custom-block-section {
    direction: rtl;
}

.custom-block-wrapper {
    width: 100%;
}

.custom-block-wysiwyg {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
}

.custom-block-html {
    width: 100%;
}

.custom-block-html * {
    direction: rtl !important;
}
