/* Granada SkyPark Landing Page - acc8f99c */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

.gsp-acc8f99c,
.gsp-acc8f99c * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.gsp-acc8f99c {
    font-family: 'Poppins', sans-serif;
    background: #f4f7f2;
    color: #1c2b1f;
    overflow-x: hidden;
    line-height: 1.6;
}

.gsp-acc8f99c img {
    max-width: 100%;
    display: block;
}

.gsp-acc8f99c a {
    text-decoration: none;
}

.gsp-acc8f99c section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

.gsp-container-acc8f99c {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}

/* NAVBAR */
.gsp-navbar-acc8f99c {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    transition: .4s;
    background: rgba(11, 25, 15, .35);
    backdrop-filter: blur(12px);
}

.gsp-nav-wrap-acc8f99c {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gsp-logo-acc8f99c {
    color: white;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
}

.gsp-nav-btn-acc8f99c {
    padding: 14px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: white;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: .3s;
}

.gsp-nav-btn-acc8f99c:hover {
    transform: translateY(-3px);
}

/* HERO */
.gsp-hero-acc8f99c {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .6)),
        url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: white;
    padding-top: 120px;
}

.gsp-hero-grid-acc8f99c {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

.gsp-badge-acc8f99c {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    margin-bottom: 28px;
    font-size: 14px;
    font-weight: 500;
}

.gsp-hero-acc8f99c h1 {
    font-size: 72px;
    line-height: 1.05;
    margin-bottom: 28px;
    font-weight: 800;
}

.gsp-hero-acc8f99c > .gsp-container-acc8f99c > .gsp-hero-grid-acc8f99c > div:first-child > p {
    font-size: 20px;
    line-height: 1.9;
    color: #dfe8df;
    margin-bottom: 35px;
}

.gsp-hero-highlight-acc8f99c {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 45px;
}

.gsp-hero-highlight-acc8f99c div {
    padding: 14px 18px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
}

.gsp-btn-primary-acc8f99c {
    display: inline-block;
    padding: 20px 38px;
    border-radius: 60px;
    background: linear-gradient(135deg, #66bb6a, #2e7d32);
    color: white;
    font-weight: 700;
    font-size: 16px;
    transition: .3s;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
    font-family: 'Poppins', sans-serif;
}

.gsp-btn-primary-acc8f99c:hover {
    transform: translateY(-5px);
}

.gsp-hero-card-acc8f99c {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(15px);
    padding: 35px;
    border-radius: 32px;
    position: relative;
}

.gsp-hero-card-acc8f99c img {
    border-radius: 24px;
    height: 540px;
    object-fit: cover;
    width: 100%;
}

.gsp-floating-box-acc8f99c {
    position: absolute;
    bottom: 35px;
    left: -30px;
    background: white;
    padding: 22px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
    max-width: 280px;
}

.gsp-floating-box-acc8f99c h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #16311d;
}

.gsp-floating-box-acc8f99c p {
    font-size: 14px;
    color: #5f6d62;
    line-height: 1.6;
}

/* SECTION TITLE */
.gsp-section-title-acc8f99c {
    text-align: center;
    max-width: 900px;
    margin: auto auto 70px;
}

.gsp-section-title-acc8f99c h2 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #18321f;
}

.gsp-section-title-acc8f99c p {
    font-size: 18px;
    line-height: 1.9;
    color: #5b6d60;
}

/* VALUE */
.gsp-value-section-acc8f99c {
    background: white;
}

.gsp-value-grid-acc8f99c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gsp-value-card-acc8f99c {
    background: #f5faf4;
    padding: 40px;
    border-radius: 30px;
    transition: .4s;
    position: relative;
    overflow: hidden;
}

.gsp-value-card-acc8f99c:hover {
    transform: translateY(-10px);
}

.gsp-value-card-acc8f99c::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #4caf50, #1b5e20);
}

.gsp-value-icon-acc8f99c {
    font-size: 44px;
    margin-bottom: 20px;
}

.gsp-value-card-acc8f99c h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #16311d;
}

.gsp-value-card-acc8f99c p {
    line-height: 1.9;
    color: #5a685d;
}

/* SPLIT SECTION */
.gsp-split-section-acc8f99c {
    background:
        linear-gradient(rgba(9, 20, 12, .82), rgba(9, 20, 12, .82)),
        url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: white;
}

.gsp-split-grid-acc8f99c {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gsp-split-image-acc8f99c {
    position: relative;
}

.gsp-split-image-acc8f99c img {
    border-radius: 35px;
    height: 650px;
    object-fit: cover;
    width: 100%;
}

.gsp-experience-card-acc8f99c {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: white;
    padding: 28px;
    border-radius: 28px;
    width: 320px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
}

.gsp-experience-card-acc8f99c h4 {
    color: #17311f;
    font-size: 24px;
    margin-bottom: 15px;
}

.gsp-experience-card-acc8f99c p {
    color: #59695d;
    line-height: 1.8;
    font-size: 15px;
}

.gsp-split-content-acc8f99c h2 {
    font-size: 58px;
    margin-bottom: 25px;
    line-height: 1.1;
}

.gsp-split-content-acc8f99c > p {
    font-size: 18px;
    line-height: 1.9;
    color: #dfe8df;
    margin-bottom: 30px;
}

.gsp-feature-list-acc8f99c {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.gsp-feature-item-acc8f99c {
    background: rgba(255, 255, 255, .08);
    padding: 22px;
    border-radius: 22px;
    backdrop-filter: blur(8px);
}

/* GALLERY */
.gsp-gallery-acc8f99c {
    background: #f7faf6;
}

.gsp-gallery-grid-acc8f99c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gsp-gallery-item-acc8f99c {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    height: 340px;
}

.gsp-gallery-item-acc8f99c img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.gsp-gallery-item-acc8f99c:hover img {
    transform: scale(1.08);
}

.gsp-gallery-overlay-acc8f99c {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: white;
}

.gsp-gallery-overlay-acc8f99c h3 {
    font-size: 24px;
}

/* INVESTMENT */
.gsp-investment-acc8f99c {
    background:
        linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)),
        url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.gsp-investment-acc8f99c h2 {
    font-size: 58px;
    margin-bottom: 25px;
}

.gsp-investment-acc8f99c p {
    max-width: 850px;
    margin: auto;
    font-size: 20px;
    line-height: 2;
    color: #dbe4db;
}

/* CTA */
.gsp-cta-acc8f99c {
    padding: 130px 0;
    background:
        linear-gradient(rgba(11, 24, 15, .75), rgba(11, 24, 15, .75)),
        url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.gsp-cta-acc8f99c h2 {
    font-size: 62px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.gsp-cta-acc8f99c p {
    max-width: 850px;
    margin: auto auto 45px;
    font-size: 20px;
    line-height: 1.9;
    color: #dbe5db;
}

/* FOOTER */
.gsp-footer-acc8f99c {
    background: #0e1c12;
    padding: 35px 20px;
    text-align: center;
    color: #d7dfd7;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gsp-hero-grid-acc8f99c,
    .gsp-split-grid-acc8f99c {
        grid-template-columns: 1fr;
    }

    .gsp-hero-acc8f99c h1 {
        font-size: 54px;
    }

    .gsp-split-content-acc8f99c h2,
    .gsp-section-title-acc8f99c h2,
    .gsp-cta-acc8f99c h2,
    .gsp-investment-acc8f99c h2 {
        font-size: 42px;
    }

    .gsp-hero-card-acc8f99c {
        margin-top: 30px;
    }

    .gsp-floating-box-acc8f99c,
    .gsp-experience-card-acc8f99c {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        max-width: 100%;
        width: 100%;
    }

    .gsp-feature-list-acc8f99c {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gsp-acc8f99c section {
        padding: 80px 0;
    }

    .gsp-hero-acc8f99c h1 {
        font-size: 42px;
    }

    .gsp-hero-acc8f99c > .gsp-container-acc8f99c > .gsp-hero-grid-acc8f99c > div:first-child > p,
    .gsp-split-content-acc8f99c > p,
    .gsp-investment-acc8f99c p,
    .gsp-cta-acc8f99c p {
        font-size: 17px;
    }

    .gsp-section-title-acc8f99c h2,
    .gsp-split-content-acc8f99c h2,
    .gsp-cta-acc8f99c h2,
    .gsp-investment-acc8f99c h2 {
        font-size: 34px;
    }

    .gsp-hero-card-acc8f99c img,
    .gsp-split-image-acc8f99c img {
        height: auto;
    }
}
