* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    color: #333;
    background: #f5f5f5;
}

.navbar {
    background: white;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    font-weight: 800;
    color: #FF8C00;
    letter-spacing: -1px;
}

.tagline-nav {
    font-size: 0.95em;
    color: #666;
    font-weight: 700;
    letter-spacing: 1px;
}

.header-line {
    width: 100%;
    height: 8px;
    background: #4A9B8E;
    margin-bottom: 3px;
}

.header-line-thin {
    width: 100%;
    height: 2px;
    background: #7CB9AE;
}

.hero {
    background: white;
    padding: 100px 50px;
    text-align: center;
    border-top: 8px solid #4A9B8E;
    border-bottom: 8px solid #4A9B8E;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: #7CB9AE;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5em;
    font-weight: 800;
    color: #FF8C00;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.6em;
    color: #7CB9AE;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.2em;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.9;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

.intro-section {
    padding: 80px 50px;
    background: white;
    text-align: center;
}

.intro-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2em;
    color: #FF8C00;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -1px;
}

.intro-section p {
    font-size: 1.15em;
    color: #555;
    max-width: 850px;
    margin: 0 auto 20px;
    line-height: 1.9;
    font-weight: 400;
}

.tagline-intro {
    font-size: 1.2em;
    color: #4A9B8E;
    margin-top: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.gallery-section {
    padding: 80px 50px;
    background: #f9f9f9;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    color: #FF8C00;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 800;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    background: #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 30px 20px 20px;
    font-weight: 700;
    font-size: 1.1em;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    background: white;
}

.highlight-card {
    background: #f9f9f9;
    padding: 45px;
    border-radius: 4px;
    text-align: center;
    transition: all 0.4s ease;
    border-top: 4px solid #FF8C00;
}

.highlight-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transform: translateY(-8px);
}

.highlight-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-family: 'Playfair Display', serif;
    color: #4A9B8E;
    margin-bottom: 15px;
    font-size: 1.5em;
    font-weight: 700;
}

.highlight-card p {
    color: #666;
    font-size: 1.05em;
    margin: 0;
    font-weight: 400;
    line-height: 1.8;
}

.units-section {
    padding: 80px 50px;
    background: #f9f9f9;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2em;
    color: #FF8C00;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -1px;
}

.floors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.floor-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.floor-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transform: translateY(-10px);
}

.floor-title {
    padding: 28px;
    background: #4A9B8E;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.floor-content {
    padding: 35px;
}

.apt-item {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e8e8e8;
}

.apt-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.apt-name {
    font-size: 1.3em;
    font-weight: 700;
    color: #FF8C00;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
}

.apt-count {
    display: inline-block;
    background: #FFF4E6;
    color: #FF8C00;
    padding: 6px 14px;
    border-radius: 3px;
    font-size: 0.75em;
    font-weight: 700;
    border: 1.5px solid #FFD9B3;
    letter-spacing: 1px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.feature-tag {
    background: #f0f5f3;
    color: #4A9B8E;
    padding: 8px 16px;
    border-radius: 3px;
    font-size: 0.9em;
    font-weight: 600;
    border: 1px solid #dceae6;
    letter-spacing: 0.3px;
}

.amenities-section {
    padding: 80px 50px;
    background: white;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.amenity-item {
    text-align: center;
    padding: 40px;
    border-radius: 4px;
    background: #f9f9f9;
    transition: all 0.4s ease;
    border-top: 4px solid #FF8C00;
}

.amenity-item:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.amenity-icon {
    font-size: 3.2em;
    margin-bottom: 20px;
}

.amenity-item h3 {
    font-family: 'Playfair Display', serif;
    color: #4A9B8E;
    font-size: 1.4em;
    margin-bottom: 12px;
    font-weight: 700;
}

.amenity-item p {
    color: #666;
    font-size: 1.05em;
    font-weight: 400;
    line-height: 1.8;
}

.cta-section {
    padding: 80px 50px;
    background: white;
    text-align: center;
    border-top: 8px solid #4A9B8E;
    border-bottom: 8px solid #4A9B8E;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    color: #FF8C00;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 1.3em;
    color: #7CB9AE;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    background: #FF8C00;
    color: white;
    padding: 18px 50px;
    border-radius: 3px;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    font-family: 'Lato', sans-serif;
}

.cta-button:hover {
    background: #E07B00;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(255, 140, 0, 0.3);
}

.footer {
    background: #4A9B8E;
    color: white;
    padding: 60px 50px;
    text-align: center;
}

.footer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.footer p {
    margin: 10px 0;
    opacity: 0.95;
    font-size: 1.05em;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .navbar {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        font-size: 1.4em;
    }

    .tagline-nav {
        font-size: 0.85em;
    }

    .hero {
        padding: 50px 20px;
        border-top: 6px solid #4A9B8E;
        border-bottom: 6px solid #4A9B8E;
    }

    .hero h1 {
        font-size: 2.5em;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 1em;
    }

    .intro-section {
        padding: 50px 20px;
    }

    .intro-section h2 {
        font-size: 2.2em;
        margin-bottom: 20px;
    }

    .intro-section p {
        font-size: 1em;
    }

    .tagline-intro {
        font-size: 1.1em;
        margin-top: 20px;
    }

    .gallery-section {
        padding: 50px 20px;
    }

    .gallery-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-label {
        font-size: 1em;
        padding: 20px 15px 15px;
    }

    .highlights {
        padding: 50px 20px;
        gap: 25px;
    }

    .highlight-card {
        padding: 25px;
    }

    .highlight-icon {
        font-size: 2.8em;
        margin-bottom: 15px;
    }

    .highlight-card h3 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .highlight-card p {
        font-size: 0.95em;
    }

    .units-section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 2.2em;
        margin-bottom: 40px;
    }

    .floors-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .floor-title {
        padding: 20px;
        font-size: 1.2em;
    }

    .floor-content {
        padding: 25px;
    }

    .apt-name {
        font-size: 1.1em;
        margin-bottom: 10px;
    }

    .apt-count {
        font-size: 0.7em;
        padding: 4px 10px;
    }

    .features {
        gap: 8px;
        margin-top: 10px;
    }

    .feature-tag {
        font-size: 0.8em;
        padding: 6px 12px;
    }

    .amenities-section {
        padding: 50px 20px;
    }

    .amenity-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .amenity-item {
        padding: 30px;
    }

    .amenity-icon {
        font-size: 2.8em;
        margin-bottom: 15px;
    }

    .amenity-item h3 {
        font-size: 1.2em;
        margin-bottom: 8px;
    }

    .amenity-item p {
        font-size: 0.95em;
    }

    .cta-section {
        padding: 50px 20px;
        border-top: 6px solid #4A9B8E;
        border-bottom: 6px solid #4A9B8E;
    }

    .cta-section h2 {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .cta-section p {
        font-size: 1.1em;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 1em;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer h3 {
        font-size: 1.8em;
        margin-bottom: 10px;
    }

    .footer p {
        font-size: 0.95em;
        margin: 8px 0;
    }
}
.booking-section {
    padding: 80px 50px;
    background: white;
    border-top: 8px solid #4A9B8E;
}

.booking-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2em;
    color: #FF8C00;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -1px;
}

.yr-widget-direct-booking {
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .navbar {
        padding: 12px 15px;
    }

    .logo {
        font-size: 1.2em;
    }

    .tagline-nav {
        font-size: 0.75em;
        letter-spacing: 0.5px;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1em;
    }

    .hero p {
        font-size: 0.95em;
    }

    .container {
        padding: 0 15px;
    }

    .intro-section {
        padding: 40px 15px;
    }

    .intro-section h2,
    .section-title,
    .gallery-title {
        font-size: 1.8em;
    }

    .intro-section p {
        font-size: 0.95em;
    }

    .highlight-card {
        padding: 20px;
    }

    .highlight-icon {
        font-size: 2.5em;
    }

    .apt-name {
        font-size: 1em;
    }

    .feature-tag {
        font-size: 0.75em;
        padding: 5px 10px;
    }

    .amenity-icon {
        font-size: 2.5em;
    }

    .cta-section {
        padding: 40px 15px;
    }

    .cta-section h2 {
        font-size: 1.6em;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.95em;
    }
}