* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f4f4f4;
    color: #222;
}

 /*NAVBAR */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #1c1c1c;
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    color: #d4af37;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.pay-btn {
    background: #d4af37;
    color: #000 !important;
    padding: 8px 14px;
    border-radius: 4px;
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* MOBILE NAV */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #1c1c1c;
        flex-direction: column;
        display: none;
    }

    nav ul li {
        margin: 0;
        border-top: 1px solid #333;
    }

    nav ul li a {
        display: block;
        padding: 14px 20px;
        font-size: 14px;
    }

    nav ul.show {
        display: flex;
    }
}


/* HERO */
header {
    height: 100vh;
    background: linear-gradient(to right, #111, #333);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 42px;
    color: #d4af37;
}

.hero-content h2 {
    margin: 10px 0;
    font-size: 26px;
}

.hero-content p {
    font-size: 15px;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 30px;
}

.btn-outline, .btn-solid {
    margin: 8px;
    padding: 12px 22px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
}

.btn-outline {
    border: 1px solid #d4af37;
    color: #d4af37;
}

.btn-solid {
    background: #d4af37;
    color: #000;
}

/* SECTIONS */
section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: auto;
}

section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #1c1c1c;
}

/* ABOUT SECTION */
.about-section {
    background: #fff;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    padding: 80px 40px;
}

.about-text-box {
    text-align: center;
    max-width: 850px;
    margin: auto;
}

.about-text-box h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1c1c1c;
}

.about-text-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

/* FEATURES GRID */
.about-features {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.feature-card {
    background: #f8f8f8;
    padding: 18px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.feature-card span {
    color: #d4af37;
    font-size: 18px;
    font-weight: bold;
}

.feature-card p {
    font-size: 14px;
    color: #333;
}

.feature-card:hover {
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.why-us {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    text-align: center;
}


/* GALLERY SECTION */
.gallery-section {
    background: #f7f7f7;
}

.gallery-container {
    max-width: 1200px;
    margin: auto;
    padding: 80px 40px;
}

.gallery-subtitle {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 40px;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* IMAGE CARD */
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* HOVER EFFECT */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover {
    transform: translateY(-6px);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
}

.lightbox .close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
    .gallery-container {
        padding: 60px 20px;
    }

    .lightbox .close {
        top: 20px;
        right: 20px;
    }
}

/* PROJECTS */
/* PROJECT CARDS */
/* SECTION TITLE */
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #d4af37;
    display: block;
    margin: 12px auto 0;
}


.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.project-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
    position: relative;
}

/* ICON */
.project-card .icon {
    font-size: 34px;
    display: block;
    margin-bottom: 15px;
}

/* HOVER EFFECT */
.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-top: 4px solid #d4af37;
}

.project-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1c1c1c;
}

.project-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* SCROLL REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* CONTACT */
.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 450px;
    margin: auto;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px;
    border: 1px solid #ccc;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: #1c1c1c;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* FOOTER */
footer {
    background: #1c1c1c;
    color: #fff;
    padding: 30px;
    text-align: center;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d4af37;
    margin: 0 10px;
    text-decoration: none;
}



@media (max-width: 768px) {

    /* GENERAL */
    body {
        font-size: 14px;
    }

    section {
        padding: 60px 20px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* NAVBAR */
    nav {
        padding: 12px 20px;
    }

    nav ul {
        display: none; /* keep simple, or later add hamburger */
    }

    .logo {
        font-size: 18px;
    }

    /* HERO */
    header {
        height: auto;
        padding: 120px 20px 80px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content h2 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 14px;
        margin-top: 10px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
    }

    .btn-outline,
    .btn-solid {
        width: 100%;
        padding: 14px;
        font-size: 14px;
    }

    /* ABOUT */
    .about-text {
        font-size: 14px;
    }

    .why-us {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .why-us div {
        background: #fff;
        padding: 12px;
        border-radius: 6px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    }

    /* PROPERTY CATEGORIES */
    .project-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card {
        padding: 25px 20px;
    }

    .project-card h3 {
        font-size: 18px;
    }

    .project-card p {
        font-size: 14px;
    }

    .project-card .icon {
        font-size: 30px;
    }

    /* CONTACT */
    .contact-info p {
        font-size: 14px;
    }

    .contact-form {
        padding: 20px 0;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 14px;
        padding: 12px;
    }

    .contact-form button {
        padding: 14px;
        font-size: 15px;
    }

    /* FOOTER */
    .footer-container {
        padding: 40px 20px;
        gap: 30px;
    }

    .footer-box h3 {
        font-size: 16px;
    }

    .footer-box p,
    .footer-box ul li a {
        font-size: 13px;
    }

    .map-box iframe {
        height: 180px;
        border-radius: 6px;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 12px;
    }
}