/*
Theme Name: Lavista Theme
Theme URI: https://example.com
Author: Ibrahem
Author URI: https://example.com
Description: A simple blank theme for landing pages
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: .hero-text h1lavitheme
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Images Slider */
.hero-images-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    animation: heroZoom 4s ease-in-out forwards;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.hero-text h1 {
    font-size: clamp(30px, 4vw, 55px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px BLACK;
}

.hero-text .subtitle {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 400;
    line-height: 1.4;
    color: #d3a05d;
    margin-bottom: 0;
    text-shadow: 2px 2px BLACK;
    font-weight: bold;
}
/* Contact Form */
.hero-form {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #d3a05d;
}

.hero-form h3 {
    font-size: 21px;
    margin-bottom: 25px;
    color: #ffffff;
    text-align: center;
}
.hero-form h3 span {
    font-size: 17px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    direction: rtl;
    transition: border-color 0.3s;
    font-family: 'Cairo', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d3a05d;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.submit-btn {
    font-family: 'Cairo', sans-serif;
    width: 100%;
    padding: 15px 30px;
    background: #d3a05d;
    color: #000000;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #c49047;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    color: #28a745;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
}

/* Payment Plan Section */
.payment-plan-section {
    background: #000000;
    padding: 80px 20px;
}

.payment-plan-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.payment-plan-container p {
    font-size: clamp(20px, 2.5vw, 24px);
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 400;
}

.payment-plan-container p strong,
.payment-plan-container p b {
    color: #d3a05d;
    font-weight: 700;
}

.payment-plan-container .highlight {
    color: #d3a05d;
    font-weight: 700;
}

/* Location Slider Section */
.location-slider-section {
    background: #000000;
    padding: 0 20px;
    overflow: hidden;
}

.location-slider-container {
    max-width: 1400px;
    margin: 0 auto;
}

.location-text {
    text-align: center;
    margin-top: 60px;
    padding: 0 20px;
}

.location-text h2 {
    font-size: clamp(32px, 5vw, 72px);
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: 2px;
}

.location-text h2 .highlight-text {
    color: #d3a05d;
    display: block;
    margin-top: 10px;
}

/* Swiper Slider Styles */
.location-swiper {
    width: 100%;
    padding: 20px 0 60px;
}

.location-swiper .swiper-slide {
    width: auto;
    height: auto;
}

.location-swiper .swiper-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s;
}
.hero-text {
    text-align: center;
}
@media (max-width: 992px) {
    .location-swiper .swiper-slide img {
        height: 370px;
        object-fit: contain;
    }
}
.location-swiper .swiper-slide-active img {
    transform: scale(1.05);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #d3a05d;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #666;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #d3a05d;
}

/* About Section */
.about-section {
    background: #0a0a0a;
    padding: 100px 20px;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-logo {
    margin-bottom: 50px;
}

.about-logo img {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.about-content p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.9;
    color: #cccccc;
    text-align: center;
    margin: 0;
    font-weight: 400;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
}

.cta-btn-whatsapp {
    background: #0ba645;
    color: #ffffff;
    border-color: #0ba645;
}

.cta-btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.cta-btn-phone {
    background: #d3a05d;
    color: #000000;
    border-color: #d3a05d;
}

.cta-btn-phone:hover {
    background: #c49047;
    border-color: #c49047;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(211, 160, 93, 0.3);
}

.cta-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}
