:root {
    --blue: #0B2E5F;
    --dark: #081F3F;
    --light: #f4f6f8;
    --grey: #e5e5e5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserrat, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #222;
}

/* ================= HEADER ================= */
.main-header {
    background: var(--grey);
    width: 100%;
}

.header-inner {
    max-width: 1400px;
    margin: auto;
    height: 100px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 220px;
    margin-top: -30px;
    margin-bottom: -30px;
}

/* ================= NAVIGATION ================= */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--blue);
    font-weight: 500;
    text-transform: lowercase;
}

/* ================= QUOTE + SOCIALS ================= */
.quote-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;   /* keep button aligned right */
    gap: 6px;
}

/* Social icons ABOVE Get Quote */
.quote-wrapper .socials {
    display: flex;
    gap: 14px;
    margin-right: 8px;      /* 👈 THIS moves icons LEFT */
}

.socials img {
    width: 28px;
    height: 28px;
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.socials img:hover {
    opacity: 1;
    transform: scale(1.15);
}

/* Get Quote button */
.quote-btn {
    padding: 10px 20px;
    background: var(--blue);
    color: white;
    border: none;
    cursor: pointer;
}

.quote-btn:hover {
    background: var(--dark);
}

/* ================= SECTIONS ================= */
.section {
    padding: 40px 40px 60px;
    text-align: center;
}

.section.light {
    background: var(--light);
}

.section h2 {
    margin-bottom: 20px;   /* space below heading */
}

.section p {
    max-width: 900px;
    margin: 0 auto;        /* center paragraph */
    line-height: 1.6;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.card {
    background: white;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Why list */
.why {
    list-style: none;
    margin-top: 20px;
}

.why li {
    margin: 10px 0;
}

/* ================= FOOTER ================= */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 40px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

footer input,
footer textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
}

footer button {
    background: var(--blue);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

iframe {
    width: 100%;
    height: 250px;
    border: 0;
}

footer p {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
}
/* ===== FIX Get Quote button inside nav ===== */
.nav-menu .quote-btn {
    background-color: var(--blue);
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-menu .quote-btn:hover {
    background-color: var(--dark);
    color: #ffffff !important;
}
/* ===== FINAL FORCE FIX ===== */
.nav-menu a.quote-btn {
    color: #ffffff !important;
    background-color: var(--blue) !important;
    text-decoration: none !important;
}

.nav-menu a.quote-btn:hover {
    background-color: var(--dark) !important;
    color: #ffffff !important;
}



