* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-red: #e31b23;
    --dark-bg: #0a0a0a;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #fff;
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 3px solid var(--primary-red);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    color: var(--primary-red);
    margin-right: 8px;
}

.social-icons a {
    color: var(--text-light);
    margin-left: 15px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-red);
}

/* Header */
header {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.logo img {
    height: 54px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

nav a:hover,
nav a.active {
    color: var(--primary-red);
}

nav a:hover:after,
nav a.active:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 100px 20px;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-subtitle {
    color: var(--primary-red);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-red);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--text-light);
}

.btn-primary:hover {
    background: #c41018;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 27, 35, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Stats Container */
.stats-container {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: var(--text-light);
    padding: 30px 50px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    z-index: 10;
    max-width: 90%;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
}

.stat-label {
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Section Styling */
.section {
    padding: 100px 0;
}

.section.dark {
    background: var(--dark-bg);
    color: var(--text-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    color: var(--primary-red);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-top: 10px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.about-content p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: var(--primary-red);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-height: 300px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-red);
    color: var(--text-light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--text-light);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.highlight-box {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-box i {
    font-size: 2rem;
    color: var(--primary-red);
}

.highlight-box h4 {
    margin-bottom: 10px;
}

.solutions-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-height: 300px;
    object-fit: cover;
}

/* Fleet Section */
.fleet-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.fleet-item {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.fleet-item:hover {
    background: var(--primary-red);
    transform: scale(1.05);
}

.fleet-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
    color: var(--primary-red);
}

.fleet-item:hover i {
    color: var(--text-light);
}

.fleet-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-height: 300px;
    object-fit: cover;
}

/* Team Section */
.team-group {
    max-width: 800px;
    margin: 0 auto;
}

.team-group-image img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    min-height: 300px;
    object-fit: cover;
}

.team-message {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
    line-height: 1.8;
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.info-card h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.business-hours {
    grid-column: span 2;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.business-hours h4 {
    margin-bottom: 10px;
    color: var(--primary-red);
}

/* Contact Form */
.contact-form {
    background: var(--text-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 2px rgba(227, 27, 35, 0.1);
}

.btn-block {
    width: 100%;
}

/* Map Section */
.contact-map {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    color: var(--primary-red);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 1s ease;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .stats-container {
        position: relative;
        bottom: auto;
        margin-top: 50px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .solutions-grid,
    .fleet-showcase,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info span {
        display: block;
        margin: 5px 0;
    }
    
    header {
        padding: 15px 20px;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--text-light);
        padding: 20px;
        box-shadow: var(--shadow);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .business-hours {
        grid-column: span 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .experience-badge {
        position: static;
        margin-top: 20px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .contact-map {
        height: 300px;
    }
}
/* Logo with text */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 54px;
    width: auto;
    transition: var(--transition);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 15px;
    border-left: 2px solid #ddd;
}

.logo-text .masons {
    color: #000; /* Black for "Mason's" */
}

.logo-text .removals {
    color: var(--primary-red, #e31b23); /* Red for "Removals" */
}

/* For white background variant if needed */
.logo-text-white .masons {
    color: #fff;
}

.logo-text-white .removals {
    color: var(--primary-red, #e31b23);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.2rem;
        padding-left: 10px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1rem;
    }
}