:root {
    --primary: #0B3A69;   /* Deep Navy */
    --accent: #FF6A00;    /* Orange */
    --dark: #000000;
    --light: #FFFFFF;
    --gray-bg: #f4f6f8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #222;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    
}

/* ================= HEADER ================= */

header {
    background: var(--dark);
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 400px;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeInLogo 1.2s ease forwards;
}

@keyframes fadeInLogo {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-btn {
    background: var(--accent);
    color: var(--light);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s ease;
}

.nav-btn:hover {
    background: #ff7f1f;
}

/* ================= HERO ================= */

.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url('src="Images/logo.png"');
    background-size: cover;
    background-position: center;
    color: var(--light);
    padding: 120px 8%;
    text-align: center;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* ================= BUTTONS ================= */

.btn {
    background: var(--accent);
    color: var(--light);
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn:hover {
    background: #ff7f1f;
    transform: translateY(-2px);
}

/* ================= SECTIONS ================= */

section {
    padding: 80px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--primary);
}

/* ================= SERVICES ================= */

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}

.card:hover {
    transform: translateY(-6px);
    border-top: 4px solid var(--accent);
}

/* Keep the main renovation card orange by default */
.highlight {
    border-top: 6px solid var(--accent);
}

/* ================= WHY US ================= */

.why-us {
    background: var(--primary);
    color: var(--light);
}

.why-us h2 {
    color: var(--light);
}

.why-us ul {
    list-style: none;
    text-align: center;
}

.why-us li {
    margin: 15px 0;
    font-size: 18px;
}

/* ================= CONTACT ================= */

.contact-section {
    background: var(--gray-bg);
    text-alignment: center;
}

.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* ================= FOOTER ================= */

footer {
    background: var(--dark);
    color: #aaa;
    text-align: center;
    padding: 25px;
    font-size: 14px;
}

/* ================= REVEAL ANIMATION ================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

@media(max-width: 768px) {
    .hero h2 {
        font-size: 30px;
    }

    header {
        flex-direction: column;
        gap: 15px;
    }
}