/*
Theme Name: Fountain Plumbing Services
Description: A professional WordPress theme designed for residential and light commercial plumbing services. Features custom post types for services and projects, responsive design, and industry-specific functionality.
Version: 1.0.0
Author: Fountain Electric & Services, LLC.
License: GPL v2 or later
Text Domain: plumbing-services
*/

/* ==========================================================================
   CSS Reset & Base Styles
   ========================================================================== */

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

html {
    font-size: 16px;
    line-height: 1.6;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
    background-color: #ffffff;
    font-weight: 400;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #000000;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4a90e2;
}

a:visited {
    color: #0066cc;
}

/* ==========================================================================
   Layout & Grid
   ========================================================================== */

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-1 { width: 8.333%; }
.col-2 { width: 16.666%; }
.col-3 { width: 25%; }
.col-4 { width: 33.333%; }
.col-6 { width: 50%; }
.col-8 { width: 66.666%; }
.col-9 { width: 75%; }
.col-12 { width: 100%; }

[class*="col-"] {
    padding: 0 15px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-top {
    background: #4a90e2;
    color: #ffffff;
    padding: 8px 0;
    font-size: 0.9rem;
}

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

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: #ffffff;
}

.contact-info a:visited {
    color: #ffffff;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-main {
    padding: 15px 0;
}

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

.site-logo img {
    max-height: 100px;
    width: auto;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a90e2;
    margin: 0;
}

.site-description {
    font-size: 0.9rem;
    color: #7e7e7e;
    margin: 0;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
    margin: 0 10px;
}

.nav-menu a {
    display: block;
    padding: 10px 15px;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: #4a90e2;
    background: #e2e2e2;
    border-radius: 4px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #000000;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    background: linear-gradient(135deg, #4a90e2 0%, #0066cc 100%);
    color: #ffffff;
    padding: 150px 0 100px;
    margin-top: 120px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section.has-header-image {
    background-image: var(--header-image);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 400;
}

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

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: #0066cc;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    background: #004d99;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #4a90e2;
    transform: translateY(-2px);
}

/* ==========================================================================
   Trust Indicators
   ========================================================================== */

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 0;
    background: #ffffff;
}

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

.trust-item .icon {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 0.5rem;
}

.trust-item h4 {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 0.3rem;
}

.trust-item p {
    color: #7e7e7e;
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
    padding: 60px 0 40px;
    background: #f8f9fa;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    position: relative;
    color: #000000;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #4a90e2;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7e7e7e;
    font-weight: 300;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #4a90e2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
    border-top-color: #0066cc;
}

.service-icon {
    font-size: 3rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000000;
}

.service-card p {
    color: #7e7e7e;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e2e2;
    font-size: 0.9rem;
    color: #7e7e7e;
}

/* ==========================================================================
   Process/Why Choose Us Section
   ========================================================================== */

.process-section {
    padding: 60px 0 40px;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #4a90e2;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.process-step h3 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 1rem;
}

.process-step p {
    color: #7e7e7e;
    line-height: 1.6;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */

.cta-banner {
    background: linear-gradient(135deg, #4a90e2 0%, #0066cc 100%);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.cta-banner h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-banner .btn {
    margin: 0 10px;
}

.call-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0066cc;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
}

.call-now-btn:hover {
    background: #004d99;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.4);
    color: #ffffff;
}

.call-now-btn .phone-icon {
    font-size: 1.5rem;
}

/* ==========================================================================
   Projects Section
   ========================================================================== */

.projects-section {
    padding: 60px 0 40px;
    background: #ffffff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 30px;
}

.project-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000000;
}

.project-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #7e7e7e;
}

.project-excerpt {
    color: #7e7e7e;
    line-height: 1.6;
}

/* ==========================================================================
   Service Guarantee
   ========================================================================== */

.guarantee-section {
    background: #f8f9fa;
    padding: 60px 0 40px;
    text-align: center;
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #4a90e2;
}

.guarantee-icon {
    font-size: 4rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

.guarantee-box h3 {
    color: #000000;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.guarantee-box p {
    color: #7e7e7e;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact {
    padding: 60px 0 40px;
    background: #f8f9fa;
}

.contact .section-header {
    margin-bottom: 40px;
}

#mc_embed_signup {
    background: transparent;
    padding: 0;
    border-radius: 10px;
    box-shadow: none;
}

#mc_embed_signup h2 {
    color: #000000;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

#mc_embed_signup .indicates-required {
    color: #7e7e7e;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

#mc_embed_signup .asterisk {
    color: #4a90e2;
}

#mc_embed_signup .mc-field-group {
    margin-bottom: 1rem;
}

#mc_embed_signup label {
    display: block;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.3rem;
}

#mc_embed_signup input[type="email"],
#mc_embed_signup input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e2e2e2;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

#mc_embed_signup input:focus {
    outline: none;
    border-color: #4a90e2;
}

#mc_embed_signup .button {
    background: #4a90e2;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

#mc_embed_signup .button:hover {
    background: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

#mc_embed_signup .response {
    padding: 10px;
    margin-top: 0.5rem;
    border-radius: 5px;
}

#mce-error-response {
    background: #ffebee;
    color: #c62828;
}

#mce-success-response {
    background: #e8f5e9;
    color: #2e7d32;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: #000000;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-widget p,
.footer-widget li {
    color: #e2e2e2;
    line-height: 1.8;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 8px;
}

.footer-widget a {
    color: #e2e2e2;
    transition: color 0.3s ease;
}

.footer-widget a:hover {
    color: #4a90e2;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #7e7e7e;
    margin: 0;
}

.footer-bottom a {
    color: #4a90e2;
}

.footer-bottom a:visited {
    color: #4a90e2;
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.breadcrumbs {
    background: #f8f9fa;
    padding: 15px 0;
    margin-top: 120px;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: #7e7e7e;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #4a90e2;
}

/* ==========================================================================
   Sidebar Styles
   ========================================================================== */

.sidebar {
    padding-left: 30px;
}

.widget {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.widget-title {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #4a90e2;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e2e2e2;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: #7e7e7e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget ul li a:hover {
    color: #4a90e2;
}

/* ==========================================================================
   Single Post/Page Styles
   ========================================================================== */

.single-post-header {
    text-align: center;
    padding: 60px 0;
    background: #f8f9fa;
    margin-top: 120px;
}

.post-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000000;
}

.post-meta {
    color: #7e7e7e;
    font-size: 0.9rem;
}

.post-meta a {
    color: #7e7e7e;
}

.post-meta a:hover {
    color: #4a90e2;
}

.post-content {
    padding: 60px 0;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 2rem 0;
}

.post-navigation {
    border-top: 1px solid #e2e2e2;
    padding-top: 30px;
    margin-top: 50px;
}

.nav-links {
    display: flex;
    justify-content: space-between;
}

.nav-links a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 5px;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 45%;
}

.nav-links a:hover {
    background: #4a90e2;
    color: #ffffff;
}

/* ==========================================================================
   Archive Styles
   ========================================================================== */

.archive-header {
    text-align: center;
    padding: 60px 0;
    background: #f8f9fa;
    margin-top: 120px;
}

.archive-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000000;
}

.archive-description {
    color: #7e7e7e;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.post-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
}

.post-card-image {
    height: 200px;
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-content {
    padding: 25px;
}

.post-card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000000;
}

.post-card-title a {
    color: inherit;
    text-decoration: none;
}

.post-card-title a:hover {
    color: #4a90e2;
}

.post-card-excerpt {
    color: #7e7e7e;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #0066cc;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.read-more:hover {
    color: #4a90e2;
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 15px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid #e2e2e2;
}

.pagination a:hover,
.pagination .current {
    background: #4a90e2;
    color: #ffffff;
    border-color: #4a90e2;
}

/* ==========================================================================
   Comments
   ========================================================================== */

.comments-area {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #e2e2e2;
}

.comments-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #000000;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    background: #f8f9fa;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.comment-author {
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.comment-meta {
    color: #7e7e7e;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.comment-content p {
    color: #555;
    line-height: 1.6;
}

.reply {
    margin-top: 15px;
}

.reply a {
    color: #0066cc;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.children {
    margin-left: 30px;
    margin-top: 20px;
}

/* ==========================================================================
   Form Styles
   ========================================================================== */

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #000000;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e2e2;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #4a90e2;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================================================
   Error 404 Page
   ========================================================================== */

.error-404 {
    text-align: center;
    padding: 100px 0;
    margin-top: 120px;
}

.error-404 h1 {
    font-size: 8rem;
    color: #4a90e2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.error-404 h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #7e7e7e;
}

.error-404 p {
    font-size: 1.2rem;
    color: #7e7e7e;
    margin-bottom: 2rem;
}

.search-form {
    max-width: 400px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 10px;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e2e2e2;
    border-radius: 5px;
    font-size: 1rem;
}

.search-form input[type="submit"] {
    padding: 12px 20px;
    background: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.search-form input[type="submit"]:hover {
    background: #0066cc;
}

/* ==========================================================================
   WordPress Specific Styles
   ========================================================================== */

.wp-block-image {
    margin-bottom: 2rem;
}

.wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.wp-block-quote {
    border-left: 4px solid #4a90e2;
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: #7e7e7e;
}

.wp-block-button .wp-block-button__link {
    background: #4a90e2;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.wp-block-button .wp-block-button__link:hover {
    background: #0066cc;
    transform: translateY(-2px);
}

.alignleft {
    float: left;
    margin: 0 2rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1rem 2rem;
}

.aligncenter {
    display: block;
    margin: 2rem auto;
    text-align: center;
}

.alignwide,
.alignfull {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Scroll to Top Button
   ========================================================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #4a90e2;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #0066cc;
    transform: translateY(-5px);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu a {
        padding: 15px 20px;
        border-bottom: 1px solid #e2e2e2;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    [class*="col-"] {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .trust-indicators {
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .project-card {
        margin-bottom: 20px;
    }
    
    .cta-banner h2 {
        font-size: 1.8rem;
    }
    
    .cta-banner p {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Accessibility Enhancements
   ========================================================================== */

*:focus {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
}

@media (prefers-contrast: high) {
    .btn-primary,
    .btn-secondary {
        border: 2px solid currentColor;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .site-header,
    .site-footer,
    .cta-buttons,
    .mobile-menu-toggle,
    .scroll-to-top {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000000;
    }
    
    a {
        text-decoration: underline;
    }
    
    .container {
        max-width: 100%;
    }
}

/* ==========================================================================
   Homepage Contact Form
   ========================================================================== */
   
.contact {
    padding: 60px 0 40px;
    background: #f8f9fa;
}

.contact .section-header {
    margin-bottom: 40px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-form-column,
.contact-info-column {
    width: 100%;
}

.contact-info-column {
    padding: 0;
    background: transparent;
    border-radius: 0;
    text-align: left !important;
}

.contact-info-column h3 {
    margin-bottom: 30px;
    font-size: 28px;
    color: #333;
    text-align: left !important;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left !important;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    text-align: left !important;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.15);
}

.contact-icon {
    font-size: 24px;
    flex-shrink: 0;
    color: #4a90e2;
}

.contact-details {
    text-align: left !important;
}

.contact-details h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333;
    text-align: left !important;
}

.contact-details p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    text-align: left !important;
}

.contact-details a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: left !important;
}

.contact-details a:hover {
    color: #4a90e2;
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-column {
        padding: 0;
    }
}


/* ==========================================================================
   End of Stylesheet
   ========================================================================== */