/* ====== KAILA RENTALS PAGE STYLES ====== */
:root {
    --primary-blue: #2c3e50;
    --dark-blue: #1a252f;
    --accent-gold: #f1c40f;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --text-dark: #343a40;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 15px;
    --border-radius-lg: 25px;
}

/* ====== HERO SECTION ====== */
.kaila-rentals-hero {
    position: relative;
    height: 70vh;
    min-height: 550px;
    background: linear-gradient(rgba(44, 62, 80, 0.6), rgba(44, 62, 80, 0.7)), url('/imgs/pics/11.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .kaila-rentals-hero { height: 50vh; min-height: 400px; }
}

.hero-full-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.5) 0%, rgba(26, 37, 47, 0.8) 100%);
    z-index: 1;
}

.hero-wipe {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    animation: heroWipe 8s infinite linear;
    pointer-events: none;
    z-index: 2;
}

@keyframes heroWipe {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-main-title {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--white);
    text-align: center;
    z-index: 3;
    position: relative;
    animation: titleFadeIn 1.5s ease forwards;
}

.hero-main-title .highlight { color: var(--accent-gold); }

@keyframes titleFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--accent-gold);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    z-index: 3;
    position: relative;
    font-weight: 300;
    animation: subtitleFadeIn 1.5s ease 0.5s forwards;
    opacity: 0;
}

@keyframes subtitleFadeIn { to { opacity: 1; } }

@media (max-width: 768px) {
    .hero-main-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
}

/* ====== INTRODUCTION ====== */
.rentals-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.intro-content p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

@media (max-width: 768px) {
    .rentals-intro { padding: 50px 0; }
    .intro-content h2 { font-size: 2rem; }
    .intro-content p { font-size: 1rem; }
}

/* ====== RENTAL CATEGORIES ====== */
.rental-categories {
    padding: 80px 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .categories-grid { grid-template-columns: 1fr; }
}

.category-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-gold);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e0b30a 100%);
    transform: rotateY(180deg);
    color: var(--text-dark);
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.category-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ====== FEATURED GALLERY ====== */
.featured-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--accent-gold);
    font-size: 2rem;
}

/* ====== WHY RENT SECTION ====== */
.why-rent {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.why-rent .section-title,
.why-rent .section-subtitle {
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .benefits-grid { grid-template-columns: 1fr; gap: 30px; }
}

.benefit-item {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-item i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 15px;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ====== CTA SECTION ====== */
.rentals-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.7)), 
                url('imgs/gallery/4.png') center/cover no-repeat fixed;
    background-attachment: fixed;
    text-align: center;
}

@media (max-width: 768px) {
    .rentals-cta { background-attachment: scroll; }
}

.rentals-cta .cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.rentals-cta .cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e0b30a 100%);
    color: var(--text-dark);
}

.cta-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

@media (max-width: 576px) {
    .cta-btn { width: 100%; justify-content: center; }
}

/* ====== ANIMATIONS ====== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="zoom-in"] {
    transform: scale(0.8);
}

[data-animate="zoom-in"].animated {
    transform: scale(1);
}

[data-animate="slide-left"] {
    transform: translateX(-50px);
}
[data-animate="slide-left"].animated {
    transform: translateX(0);
}

[data-animate="slide-right"] {
    transform: translateX(50px);
}
[data-animate="slide-right"].animated {
    transform: translateX(0);
}