/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #1e1e1e;
    background: #fefefe;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HEADER ========== */
header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 998;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0B2B4F;
}

.logo i {
    color: #D4AF37;
    margin-right: 5px;
}

nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

nav a {
    color: #0B2B4F;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1rem;
    padding: 6px 10px;
}

nav a:hover {
    color: #D4AF37;
}

.header-phone a {
    background: #0B2B4F;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-phone a:hover {
    background: #D4AF37;
}

/* ========== HERO ========== */
.hero {
    color: white;
    text-align: center;
    padding: 120px 20px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 43, 79, 0.7);
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: #D4AF37;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    border: 2px solid transparent;
    font-size: 1rem;
    cursor: pointer;
}

.btn-gold {
    background: #D4AF37;
    color: #0B2B4F;
}

.btn-gold:hover {
    background: transparent;
    color: #D4AF37;
    border-color: #D4AF37;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #0B2B4F;
}

.btn-dark {
    background: #0B2B4F;
    color: #fff;
}

.btn-dark:hover {
    background: #D4AF37;
    color: #0B2B4F;
}

/* ========== SECTION TITLES ========== */
.section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #0B2B4F;
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: #D4AF37;
    margin: 12px auto 0;
    border-radius: 2px;
}

.subtitle {
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto 45px;
    font-size: 1.1rem;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background: #f9f9fb;
}

/* ========== FEATURES GRID (Home) ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-box {
    text-align: center;
    padding: 35px 25px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid #D4AF37;
}

.feature-icon {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 15px;
}

/* ========== PROPERTY CARDS ========== */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.property-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.property-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.property-info {
    padding: 20px;
}

.property-info h3 {
    font-size: 1.25rem;
    color: #0B2B4F;
    margin-bottom: 6px;
}

.property-price {
    font-weight: 700;
    color: #0B2B4F;
    font-size: 1.2rem;
    margin: 10px 0 5px;
}

.property-location {
    color: #666;
}

/* ========== SERVICES ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-box {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.service-box:hover {
    border-bottom: 3px solid #D4AF37;
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 15px;
}

/* ========== OWNER SECTION (About) ========== */
.owner-section {
    background: #f9f9fb;
    border-radius: 24px;
    padding: 40px 20px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.owner-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #D4AF37;
}

.owner-info {
    flex: 1;
}

.owner-info h2 {
    color: #0B2B4F;
    margin-bottom: 10px;
}

/* ========== COMPANY GALLERY (removed – but keep if needed) ========== */
/* We are not using gallery page, but if you want to keep on about, we can omit */

/* ========== CONTACT ========== */
.contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-card {
    flex: 1 1 300px;
    background: #0B2B4F;
    color: white;
    border-radius: 20px;
    padding: 35px;
}

.contact-card a {
    color: #D4AF37;
    text-decoration: none;
}

.contact-card a:hover {
    color: #fff;
}

.contact-form {
    flex: 1 1 400px;
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.contact-form button {
    background: #D4AF37;
    color: #0B2B4F;
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #0B2B4F;
    color: #fff;
}

/* ========== FLOATING WHATSAPP ========== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    z-index: 999;
    animation: wa-pulse 2s infinite;
    transition: transform 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
}

@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ========== FOOTER ========== */
footer {
    background: #0B2B4F;
    color: #ccc;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
}

footer span {
    color: #D4AF37;
    font-weight: 600;
}

footer .footer-social {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

footer .footer-social a {
    color: #ccc;
    font-size: 1.3rem;
    transition: 0.3s;
}

footer .footer-social a:hover {
    color: #D4AF37;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .header-inner {
        flex-direction: column;
        align-items: center;
    }
    nav {
        justify-content: center;
        gap: 12px;
    }
    .header-phone {
        margin-top: 5px;
    }
    .section-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero {
        padding: 80px 20px;
        min-height: 60vh;
    }
}