* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #222;
}

/* Header */
header {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1b365d;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
}

nav a:hover {
    color: #c59d5f;
}

header button,
.hero button {
    border: none;
    background: #1b365d;
    color: white;
    padding: 13px 22px;
    border-radius: 4px;
    cursor: pointer;
}

/* Hero */
.hero {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;

    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1600&q=80");

    background-size: cover;
    background-position: center;
    color: white;
}

.hero h1 {
    font-size: 55px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 19px;
    max-width: 650px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero button {
    background: #c59d5f;
    font-size: 16px;
    padding: 15px 30px;
}
/* Properties Section */

.properties {
    padding: 80px 7%;
    background: #f7f7f7;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 38px;
    margin-bottom: 10px;
    color: #222;
}

.section-title p {
    color: #666;
    font-size: 16px;
}

.property-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.10);
    transition: 0.3s;
}

.property-card:hover {
    transform: translateY(-8px);
}

.property-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.property-content {
    padding: 22px;
}

.property-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
}

.property-content p {
    color: #666;
    line-height: 1.6;
}

.property-content .location {
    color: #a67c2e;
    margin-bottom: 10px;
}

.property-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.property-bottom strong {
    font-size: 20px;
    color: #222;
}

.property-bottom button {
    border: none;
    background: #222;
    color: white;
    padding: 10px 18px;
    border-radius: 5px;
    cursor: pointer;
}

.property-bottom button:hover {
    background: #a67c2e;
}

/* Mobile Responsive */

@media (max-width: 900px) {
    .property-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .property-container {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 30px;
    }
}
/* Projects Section */
.projects {
    padding: 70px 8%;
    background: #f8f8f8;
}

.projects .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.projects .section-title h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.projects .section-title p {
    color: #666;
}

.project-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.project-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
}

.project-content button {
    background: #c59d5f;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.project-content button:hover {
    background: #a98248;
}
/* Contact Section */
.contact {
    padding: 70px 8%;
    background: white;
}

.contact .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.contact .section-title h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.contact .section-title p {
    color: #666;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: auto;
}

.contact-info {
    padding: 30px;
    background: #f8f8f8;
    border-radius: 10px;
}

.contact-info h3 {
    font-size: 25px;
    margin-bottom: 25px;
}

.contact-info p {
    margin: 18px 0;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    box-sizing: border-box;
}

.contact-form textarea {
    height: 130px;
    resize: vertical;
}

.contact-form button {
    width: fit-content;
    background: #c59d5f;
    color: white;
    border: none;
    padding: 13px 25px;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #a98248;
}
/* Footer */
.footer {
    background: #1b365d;
    color: white;
    padding-top: 60px;
}

.footer-container {
    width: 85%;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 45px;
}

.footer-box h3 {
    font-size: 25px;
    margin-bottom: 18px;
}

.footer-box h4 {
    font-size: 18px;
    margin-bottom: 18px;
}

.footer-box p {
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-box a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 12px;
}

.footer-box a:hover {
    color: #c59d5f;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 20px;
}

.footer-bottom p {
    color: #ddd;
    margin: 0;
}
/* Footer */
.footer {
    background: #1b365d;
    color: white;
    padding-top: 60px;
}

.footer-container {
    width: 85%;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 45px;
}

.footer-box h3 {
    font-size: 25px;
    margin-bottom: 18px;
}

.footer-box h4 {
    font-size: 18px;
    margin-bottom: 18px;
}

.footer-box p {
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-box a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 12px;
}

.footer-box a:hover {
    color: #c59d5f;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 20px;
}

.footer-bottom p {
    color: #ddd;
    margin: 0;
}
.enquire-btn {
    display: inline-block;
    background: #1b365d;
    color: white;
    padding: 13px 22px;
    border-radius: 4px;
    text-decoration: none;
}

.enquire-btn:hover {
    background: #c59d5f;
}
.details-btn {
    display: inline-block;
    background: #222;
    color: white;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
}

.details-btn:hover {
    background: #a67c2e;
}
/* Mobile Responsive */

@media (max-width: 768px) {

    header {
        height: auto;
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        min-height: 500px;
        padding: 30px 20px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
    }

    .property-container,
    .project-container {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title h2 {
        font-size: 30px;
    }
}
/* Property Search */

.property-search {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 0 auto 35px;
    max-width: 900px;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-radius: 8px;
}

.property-search select,
.property-search input {
    padding: 13px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    outline: none;
}

.property-search select {
    min-width: 180px;
}

.property-search input {
    flex: 1;
}

.property-search button {
    padding: 13px 20px;
    border: none;
    border-radius: 5px;
    background: #1b365d;
    color: white;
    cursor: pointer;
}

.property-search button:hover {
    background: #c59d5f;
}

/* Mobile Search */

@media (max-width: 768px) {
    .property-search {
        flex-direction: column;
    }

    .property-search select,
    .property-search input,
    .property-search button {
        width: 100%;
    }
}
/* Property Details Page */

.property-details {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
    align-items: center;
}

.property-detail-image {
    flex: 1;
}

.property-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
}

.property-detail-content {
    flex: 1;
}

.property-detail-content h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.property-detail-content h2 {
    font-size: 30px;
    margin: 20px 0;
}

.property-detail-content p {
    line-height: 1.7;
}

.property-features {
    display: flex;
    gap: 30px;
    margin: 25px 0;
}

.property-features div {
    display: flex;
    flex-direction: column;
}

.property-features strong {
    font-size: 24px;
}

.property-features span {
    font-size: 14px;
}

.details-btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
}
@media (max-width: 768px) {

    .property-details {
        flex-direction: column;
        margin: 30px auto;
        padding: 15px;
    }

    .property-detail-image img {
        height: 300px;
    }

    .property-detail-content h1 {
        font-size: 30px;
    }

    .property-detail-content h2 {
        font-size: 25px;
    }

    .property-features {
        gap: 20px;
    }
}
/* Property Details Page */

.property-details {
    display: flex;
    gap: 40px;
    padding: 60px 8%;
    align-items: center;
}

.property-detail-image {
    width: 50%;
}

.property-detail-image img {
    width: 100%;
    border-radius: 12px;
}

.property-detail-content {
    width: 50%;
}

.property-detail-content h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.property-detail-content h2 {
    font-size: 28px;
    margin: 20px 0;
}

.property-detail-content p {
    line-height: 1.7;
}

.property-features {
    display: flex;
    gap: 30px;
    margin: 25px 0;
}

.property-features div {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.property-features strong {
    font-size: 24px;
}

.property-features span {
    font-size: 14px;
}

.details-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #1e5eff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

.details-btn:hover {
    background: #164dcc;
}
.back-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 11px 22px;
    background: #eeeeee;
    color: #222;
    text-decoration: none;
    border-radius: 6px;
}

.back-btn:hover {
    background: #dddddd;
}
/* About Section */

.about {
    padding: 80px 8%;
    background: #f8f9fa;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.about-points {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.about-points div {
    padding: 15px;
    background: white;
    border-radius: 10px;
    text-align: center;
    flex: 1;
}

.about-points strong {
    display: block;
    font-size: 18px;
}

.about-points span {
    display: block;
    font-size: 13px;
    color: #777;
    margin-top: 5px;
}

.about-btn {
    display: inline-block;
    padding: 13px 25px;
    background: #168bd5;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

.about-btn:hover {
    background: #0d6fae;
}
/* SIYOM TVASTA Logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
}

.logo-main {
    font-size: 28px;
    letter-spacing: 1px;
    color: #102a4c;
}

.logo-main span {
    color: #c99a3b;
}

.logo small {
    margin-top: 5px;
    padding-left: 45px;
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    font-weight: 500;
    color: #102a4c;
}