/* 
Made by a57webdesign.com - Professional Web Solutions.
If significant changes are made, update this comment to reflect your own authorship.
*/

/* Road Runner Logo Color Theme */
:root {
    --primary-color: #2B4C8C; /* Deep blue from logo */
    --secondary-color: #1A365D; /* Darker blue */
    --accent-color: #F59E0B; /* Orange/yellow from beak */
    --accent-hover: #D97706; /* Darker orange */
    --text-dark: #1A202C; /* Dark text */
    --text-light: #FFFFFF; /* White text */
    --background-light: #F7FAFC; /* Light background */
    --background-dark: #1A202C; /* Dark background */
    --border-color: #E2E8F0; /* Light border */
    --shadow-color: rgba(0, 0, 0, 0.1); /* Blue shadow */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

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

ul {
    list-style: none;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
}

.top-bar .container {
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center;
    position: relative; /* For positioning social icons */
}

.top-bar a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a[href^="tel:"] {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Adds space between icon and text */
    font-weight: 700; /* Bolder font */
    font-size: 1.1rem; /* Slightly larger text */
}

.top-bar a:hover {
    color: var(--accent-color);
}

.social-icons {
    position: absolute;
    right: 15px; /* Position to the far right */
    display: flex;
    align-items: center;
}

.social-icons a {
    margin-left: 15px;
    font-size: 16px;
    display: inline-flex; /* Ensures icons align properly */
    align-items: center;
}

/* This new rule will specifically remove the 'X' without affecting the icons */
.top-bar .social-icons a::after {
    content: none !important;
}

/* Header & Navigation */
header {
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px; /* Adjusted for better scale */
    width: auto;
    transition: transform 0.3s ease;
}

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

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 10px;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a:not(.contact-btn)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F59E0B;
    transition: width 0.3s ease;
}

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

.contact-btn {
    background-color: #F59E0B;
    color: white !important;
    padding: 12px 25px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #D97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.contact-btn:hover::after {
    display: none;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

@media (min-width: 993px) {
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none; /* Hidden on desktop */
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-dark);
    transition: all 0.3s ease-in-out;
}

/* Mobile Navigation Styles */
@media (max-width: 992px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .main-nav li {
        width: 100%;
        padding: 10px 0;
    }
    
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: #f0f0f0;
    }
    .dropdown.active .dropdown-content {
        display: block;
    }
}

/* Hero Section */
.hero {
    color: var(--text-light);
    text-align: center;
    padding: 100px 20px;
    position: relative;
    background: linear-gradient(45deg, rgba(43, 76, 140, 0.8), rgba(26, 54, 93, 0.8)), url('images/front-porch-display.webp') no-repeat center center/cover;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-contact-note {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--accent-color);
    padding: 15px;
    border-radius: 8px;
    max-width: 600px;
    margin: 20px auto;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
}

.cta-contact-options {
    margin-top: 20px;
}

.cta-contact-options p {
    margin-bottom: 15px;
    font-weight: 600;
}

.quick-contact-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.quick-contact-link {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--accent-color);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.quick-contact-link:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.quick-contact-link i {
    margin-right: 8px;
}

.response-guarantee {
    margin-top: 15px;
    font-style: italic;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .hero-contact-note {
        padding: 10px;
        font-size: 1rem;
    }

    .quick-contact-links {
        flex-direction: column;
        align-items: center;
    }

    .quick-contact-link {
        width: 80%;
        text-align: center;
    }

    .cta-contact-options p {
        font-size: 1.1rem;
    }

    .response-guarantee {
        font-size: 0.9rem;
    }
}

/* About Hero Section */
.about-hero {
    padding: 60px 0;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

.about-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-hero .hero-image img {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-hero .hero-content {
    max-width: 50%;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.btn:hover::before {
    width: 200px;
    height: 200px;
}

.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn:active {
    transform: translateY(0);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card .service-icon-animated {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #4A5568;
}

/* Consistent Section Padding */
.services,
.why-choose,
.cta {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.why-choose {
    background: var(--background-light);
}

/* Why Choose Us Section - Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    text-align: center;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-icon-container {
    background: var(--accent-color);
    color: var(--text-light);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.feature-item:hover .feature-icon-container {
    background: var(--accent-hover);
    transform: translateY(-5px) scale(1.05);
}

.feature-icon-pulse {
    animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }
    100% {
        box-shadow: 0 0 0 25px rgba(245, 158, 11, 0);
    }
}

/* Call to Action Section */
.cta {
    background: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
}

.cta h2 {
    color: var(--text-light);
    font-size: 2.5rem;
}

.cta p {
    color: #E2E8F0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mission-section {
    padding: 60px 0;
    background: #fff;
}

.footer-col img[src="images/logo-concrete.png"] {
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
    width: 180px;
    height: auto;
}

.why-choose.creative-why-choose .feature-item.creative-feature-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-choose.creative-why-choose .feature-item.creative-feature-item h3 {
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    font-size: 1.4rem;
}

.why-choose.creative-why-choose .feature-item.creative-feature-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 40px;
}
 
footer {
    background-color: var(--background-dark);
    color: #A0AEC0;
    padding: 70px 0 30px;
}

.footer-col h3 {
    color: var(--accent-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
}
 
.footer-col ul {
    list-style: none;
}
 
.footer-col ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}
 
.footer-col ul li i {
    color: var(--accent-color);
    width: 20px;
    font-size: 1.1rem;
    flex-shrink: 0;
}
 
.footer-col ul li a {
    color: #CBD5E0;
    transition: color 0.3s ease;
}
 
.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-col p {
    color: #A0AEC0;
    line-height: 1.8;
}
 
.copyright {
    border-top: 1px solid #2D3748;
    padding-top: 30px;
    text-align: center;
    color: #718096;
}
 
.footer-social-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #2D3748;
}
 
.footer-social-section h4 {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
 
.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
 
.footer-social-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #B0BEC5;
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-size: 14px;
}
 
.footer-social-links a i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 4px;
    font-size: 12px;
    transition: all 0.3s ease;
    margin-right: 8px;
}
 
.footer-social-links a:hover i {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
}
 
.footer-social-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px var(--shadow-color);
}
 
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
 
.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Footer Mobile Styles */
@media (max-width: 768px) {
    .footer-col {
        text-align: center;
    }

    .footer-col img[src="images/logo-concrete.png"] {
        margin: 0 auto 20px; /* Center the logo */
    }

    .footer-col ul {
        padding-left: 0; /* Remove default padding for lists */
    }

    .footer-col ul li {
        justify-content: center; /* Center list content (icon + text) */
    }

    .footer-social-links {
        align-items: center; /* Center social links */
    }
}

/* About Section - Replaced with a responsive 2-column grid */
.about {
    padding: 80px 0;
    background: var(--background-light);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}
.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    width: 100%;
}
.about-text {
    text-align: left;
}

/* Color Preview Section */
.color-preview {
    padding: 80px 0;
    background: var(--background-light);
    text-align: center;
}

.color-grid-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.color-swatch {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.color-swatch:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.color-swatch img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.color-swatch p {
    padding: 1rem;
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
}

/* About Page Specifics */
.about-main-section {
    padding: 80px 20px;
}

.about-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-main-text h2.section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.about-main-text .feature-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.about-main-text .feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-main-text .feature-list li i {
    color: var(--accent-color);
}

.about-main-image img {
    width: 100%;
    border-radius: 0; /* Remove rounded corners */
    box-shadow: none; /* Remove shadow */
}

.glowing-logo {
    animation: glow 2s infinite alternate;
}