* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    color: #333;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover, a:focus, a:visited {
    text-decoration: none;
}

.top-bar {
    background-color: #df3a1b;
    color: white;
    font-size: 14px;
    padding: 12px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

.top-bar a:hover {
    text-decoration: underline;
}

.main-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 120px;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	background-color: white;
	border-bottom: 1px solid #eee;
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: transform 0.25s ease-in-out;
}

.main-header.header-hidden {
    transform: translateY(-100%);
}

.logo {
    flex-shrink: 0;
}

.logo img {
    max-width: 170px;
    height: auto;
    display: block;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: nowrap;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap;
}
.main-nav a:hover {
    color: #df3a1b;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.btn-quote {
    background-color: #df3a1b;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    white-space: nowrap;
    display: inline-block;
}

.btn-quote:hover {
    background-color: #c93318;
}

.main-footer {
    background-color: #2a2a2a;
    color: #ccc;
    padding: 60px 370px 20px;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 20px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col.brand img {
    max-width: 160px;
    height: auto;
    display: block;
}

.footer-col.brand p {
    margin: 20px 0;
    line-height: 1.6;
}

.footer-col h3 {
    color: white;
    font-size: 17px;
    margin-top: 0;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    text-decoration: none;
    color: #ccc;
}

.footer-col ul a:hover {
    color: white;
}

.footer-col.contact p {
    margin: 12px 0;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.legal-links a {
    color: #ccc;
    text-decoration: none;
    margin-left: 10px;
}

.legal-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .footer-content {
        flex-direction: column;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

.float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 90px;
	right: 10px;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.float:hover {
    background-color: #20bd5a;
    color: #FFF;
}

.float i {
    margin-top: 0;
}

.wpp-chat-modal {
    position: fixed;
    bottom: 110px;
    right: 40px;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,.25);
    z-index: 99999;
    display: none;
    animation: wppFade .25s ease;
}

@keyframes wppFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wpp-header {
    background: #075E54;
    color: #fff;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wpp-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.wpp-body {
    background: #ECE5DD;
    padding: 15px;
}

.wpp-msg {
    background: #fff;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    box-shadow: 0 1px 2px rgba(0,0,0,.08);
}

.wpp-input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    background: #fff;
}

.wpp-btn {
    width: 100%;
    border: none;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
}

.wpp-btn:hover {
    background: #20bd5a;
}

@media(max-width: 768px) {
    .float {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .wpp-chat-modal {
        right: 15px;
        left: 15px;
        width: auto;
        bottom: 80px;
    }
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.mobile-only-quote {
    display: none;
}

.main-nav ul li.has-dropdown {
    position: relative;
}

.main-nav ul li .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 260px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    padding: 8px 0;
    z-index: 1000;
    list-style: none;
    text-align: left;
}

.main-nav ul li.has-dropdown:hover .dropdown-menu {
    display: block;
}

.main-nav ul li .dropdown-menu li {
    width: 100%;
}

.main-nav ul li .dropdown-menu li a {
    padding: 10px 18px;
    display: block;
    color: #333333;
    font-size: 0.85rem;
    text-transform: none;
    font-weight: normal;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.main-nav ul li .dropdown-menu li a:hover {
    background-color: #f5f5f5;
    color: #df3a1b;
}

.main-nav ul li a i {
    font-size: 0.7rem;
    margin-left: 4px;
}

@media (max-width: 1200px) {
    .main-header {
        padding: 15px 20px;
    }

    .main-nav ul {
        gap: 12px;
    }

    .main-nav a {
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .main-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }

    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 999;
        padding: 0;
    }

    .main-nav.active {
        max-height: 500px;
        padding: 20px 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
    }
}

.footer-address-highlight {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.4;
}
.footer-address-highlight a {
    color: #ccc;
    text-decoration: none;
    display: inline-block;
}
.footer-address-highlight a:hover {
    color: #fff;
}
.footer-address-highlight i {
    color: var(--primary-color, #df3a1b);
    margin-right: 5px;
}
.footer-address-highlight span {
    font-size: 12px;
    opacity: 0.8;
}

.logo img {
    max-width: 130px;
    height: auto;
    display: block;
}

.main-footer {
    background-color: #2a2a2a;
    color: #ccc;
    padding: 50px 20px 20px;
    font-size: 14px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 10px;
    }

    .top-bar span {
        font-size: 13px;
    }

    .logo img {
        max-width: 100px;
    }

    .main-header {
        padding: 10px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}