* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #0f2027;
    color: #fff;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(8px);
    padding: 20px 40px;
}

.company-name {
    font-size: 26px;
    font-weight: bold;
    color: #923a18;
    margin-bottom: 20px;
    text-align: left;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.nav-links a:hover {
    color: #8a3617;
}

.call-btn a {
    background: #843c0d;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: bold;
    white-space: nowrap;
}

/* HERO */
.hero {
    height: 100vh;
    background-image: url("courtier-img.pdg 3.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0,0,0,0.65);
    padding: 60px 35px;
    border-radius: 20px;
    text-align: center;
}

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

.hero p {
    margin: 15px 0 30px;
}

.hero-btn {
    background: #8f3711;
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* PROFILE */
.profile-section {
    background: linear-gradient(135deg, #040b0e, #010808);
    padding: 80px 20px;
}

.profile-card {
    max-width: 1000px;
    margin: auto;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
}

.profile-card img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #8f440a;
}

.profile-info h2 {
    color: #65360e;
    font-size: 32px;
}

.profile-info h3 {
    margin: 10px 0 15px;
}

.profile-info p {
    line-height: 1.6;
    margin-bottom: 25px;
}

.profile-btn {
    background: #6b300a;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* SECTIONS */
section {
    background: rgba(0,0,0,0.9);
    padding: 80px 20px;
}

section h2 {
    text-align: center;
    color: #7c3f14;
    margin-bottom: 40px;
}

/* SERVICES */
.services-list {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 25px;
    list-style: none;
}

.services-list li {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

/* BOOKING FORM */
.booking-form {
    max-width: 600px;
    margin: auto;
    display: grid;
    gap: 15px;
}

.booking-form input,
.booking-form textarea {
    padding: 14px;
    border-radius: 10px;
    border: none;
}

.booking-form textarea {
    height: 120px;
}

.booking-form button {
    background: #823d0b;
    color: #fff;
    padding: 14px;
    border-radius: 25px;
    border: none;
    font-weight: bold;
}

/* CONTACT LINKS */
#contact a {
    color: #fff;
    text-decoration: none;
}

#contact a:hover {
    color: #8a3617;
}

/* FOOTER */
footer {
    background: #000;
    text-align: center;
    padding: 20px;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .profile-card {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 30px;
    }

    .company-name {
        font-size: 20px;
        text-align: left;
    }
}