/* ============================
   LAND ROVER — HERO SECTION
============================ */

.lr-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lr-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
    z-index: 1;
}

.lr-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.35));
    z-index: 2;
}

/* CONTENT */
.lr-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    width: 80%;
    max-width: 900px;
}

/* TOP TAG */
.lr-tag {
    display: inline-block;
    background: rgba(255,255,255,0.9);
    color: #000;
    padding: 8px 22px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
}

/* TITLE */
.lr-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

/* DESCRIPTION */
.lr-desc {
    font-size: 1.1rem;
    max-width: 780px;
    margin: 0 auto 35px auto;
    opacity: 0.95;
    line-height: 1.7;
}

/* BUTTON — EXACTLY MATCHING YOUR HERO BUTTON THEME */
.lr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 34px;
    border: 2px solid white;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

/* Hover Glow */
.lr-btn:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255,255,255,0.25);
}

/* Shine Effect */
.lr-btn::after {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 70%;
    height: 100%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-20deg);
    transition: 0.6s ease;
}

.lr-btn:hover::after {
    left: 130%;
}

/* Hover Glow */
.lr-btn-g:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255,255,255,0.25);
}

/* Shine Effect */
.lr-btn-g::after {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 70%;
    height: 100%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-20deg);
    transition: 0.6s ease;
}

.lr-btn-g:hover::after {
    left: 130%;
}

/* MOBILE */
@media (max-width: 768px) {
    .lr-title {
        font-size: 2.2rem;
    }
    .lr-desc {
        font-size: 1rem;
    }
    .lr-tag {
        font-size: 12px;
    }
    .lr-btn {
        padding: 11px 28px;
        font-size: 14px;
    }
}

/* LAND ROVER GALLERY SECTION */
.lr-gallery-section {
    padding: 100px 0;
    background: #f7f8fc; 
}

.lr-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.lr-head h2 {
    font-size: 30px;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.lr-head p {
    font-size: 15px;
    color: #6d6d6d;
    margin-bottom: 40px;
}

/* GRID */
.lr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* Images */
.lr-grid img {
    width: 100%;
    height: 260px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.lr-grid img:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.12);
}

/* Button */
.lr-btn-g {
    display: inline-block;
    margin-top: 35px;
    padding: 12px 30px;
    border: 2px solid black;
    border-radius: 30px;
    text-decoration: none;
    color: black;
    font-weight: 600;
    transition: 0.3s ease;
}

.lr-btn-g:hover {
    background: black;
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .lr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .lr-grid {
        grid-template-columns: 1fr;
    }

    .lr-grid img {
        height: 230px;
    }
}

/* LAND ROVER FEATURES SECTION */
.lr-features {
    background: #f7f8fc;
    padding: 100px 0;
}

.lr-features-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.lr-features-head h2 {
    font-size: 30px;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.lr-features-head p {
    font-size: 15px;
    color: #6b6b6b;
    max-width: 650px;
    margin: 0 auto 50px;
}

/* GRID */
.lr-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.lr-feature-card {
    background: white;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    text-align: center;
    transition: 0.3s ease;
}

/* Hover effect */
.lr-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.10);
}

/* ICONS */
.lr-feature-card i {
    font-size: 38px;
    color: #111;
    margin-bottom: 18px;
}

/* TEXT */
.lr-feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.lr-feature-card p {
    font-size: 14px;
    color: #6d6d6d;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .lr-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .lr-features-grid {
        grid-template-columns: 1fr;
    }
}

