/* GLOBAL STYLES */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

a { text-decoration: none; color: inherit; }

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
}

.navbar a {
    color: #333;
    font-weight: 600;
    margin-left: 25px;
    transition: color 0.3s;
}

.navbar a:hover { color: #ff6622; }

/* HERO SECTION (Home) */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.hero-text { flex: 1; }
.hero h1 { font-size: 3rem; font-weight: 300; margin: 0; }
.welcome-text { font-size: 3.5rem; font-weight: 700; margin: 0 0 20px 0; }
.website-word { color: #ff6622; }

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-left: 50px;
}

.profile-pic {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    display: block;
}

/* CONTENT SECTIONS */
.content-section { padding: 40px 0; }
.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.offer-list { list-style: none; padding: 0; }
.offer-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}
.offer-list li::before {
    content: '•';
    color: #ff6622;
    font-weight: bold;
    width: 1em;
    margin-left: -1em;
}

/* POLICY PAGES STYLING */
.policy-content h3 { margin-top: 30px; color: #444; }
.policy-content ul { margin-left: 20px; margin-bottom: 20px; }
.policy-content a { color: #ff6622; text-decoration: underline; }

/* CONTACT PAGE */
.contact-body { background-color: #fcfbf8; }
.contact-header-title {
    text-align: center;
    font-size: 3.5rem;
    margin-top: 40px;
    margin-bottom: 40px;
    font-family: serif;
    font-weight: 400;
    letter-spacing: 2px;
}
.contact-card {
    background-color: #ffffff;
    max-width: 700px;
    margin: 0 auto 60px auto;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border-radius: 6px;
}

/* CONTACT LABELS */
.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #bfaea6;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-family: serif;
}

/* CONTACT INPUTS */
.input-line {
    border: none;
    border-bottom: 1px solid #ddd;
    width: 100%;
    padding: 10px 0;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    background-color: transparent;
}
.input-box {
    border: 1px solid #ddd;
    width: 100%;
    padding: 12px;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    outline: none;
    background-color: transparent;
}
.input-line:focus,
.input-box:focus { border-color: #333; }

/* CONTACT BUTTON */
.btn-submit {
    background-color: #ff6622;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}
.btn-submit:hover { background-color: #e65c19; }

/* CONTACT FORM LAYOUT */
.contact-form { width: 100%; }
.contact-row {
    display: flex;
    gap: 40px;
    margin-bottom: 10px;
}
.contact-field { flex: 1; }

/* MOBILE LAYOUT */
@media (max-width: 768px) {
    .contact-row {
        flex-direction: column;
        gap: 0;
    }
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    margin-top: 0;
    background-color: #fff;
}
.footer-links a {
    margin: 0 8px;
    color: #666;
    text-decoration: none;
}
.footer-links a:hover { color: #000; }

.contact-footer-box {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    margin-top: 40px;
}
.contact-footer-box a { color: #ff6622; font-weight: 600; }

/* RESPONSIVE SHARED */
@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; }
    .hero-text { order: 2; }
    .hero-image { order: 1; margin: 0 0 30px 0; }
    .profile-pic { max-width: 220px; }
    .navbar { padding: 15px; }
    .contact-card { padding: 20px; margin: 20px; }
    .footer-links a { display: block; margin: 8px 0; }
}
