:root {
    /* Desert Vista Excavation color scheme */
    --primary: #c96e2b;      /* Desert orange/earth tone */
    --primary-dark: #b05a1f;
    --primary-light: #e6cba0;
    --secondary: #5d4b3a;     /* Brown earth */
    --accent: #2c5f2d;        /* Desert green */
    --light: #f8f5f0;         /* Sand/light */
    --dark: #2c2c2c;          /* Dark gray */
    --white: #ffffff;
    --gray: #6b7280;
    --border: #e5e7eb;
    
    /* Keeping existing variable names with new colors */
    --navy: var(--secondary);
    --orange: var(--primary);
    --gold: var(--primary-light);
    
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    font-size: 18px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--secondary);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

/* Top bar */
.topbar {
    background: var(--dark);
    color: var(--white);
    font-size: 0.95rem;
}

.topbar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    text-align: center;
    flex-wrap: wrap;
}

.topbar a { 
    font-weight: 700; 
    color: var(--primary);
    text-decoration: none;
}

.topbar a:hover {
    color: var(--primary-light);
}

/* Header */
header {
    background: linear-gradient(135deg, var(--dark) 0%, #3d3d3d 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    max-height: 125px;
    width: auto;
    border-radius: 5px;
}

nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: var(--transition);
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active:after {
    width: 100%;
}

.header-cta {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 17px;
    white-space: nowrap;
}

.btn-small {
    padding: 12px 20px;
    font-size: 16px;
}

.btn-large {
    padding: 18px 32px;
    font-size: 18px;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #4a3b2e;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-accent {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 700;
}

.btn-accent:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 110, 43, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--white);
    cursor: pointer;
    padding: 10px;
}

/* Hero */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('../images/hero-bg.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 1800px;
}

.eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

h1 {
    font-size: 64px;
    margin-bottom: 30px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 28px;
}

.hero-points span {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Hero Card */
.hero-card {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.hero-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 28px;
}

.hero-card p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 18px;
}

.mini-service-list {
    list-style: none;
    padding: 0 0 20px 0;
    margin: 20px 0 0;
}

.mini-service-list li {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--gray);
}

.mini-service-list li:last-child {
    border-bottom: none;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    margin-top: 8px;
    flex: 0 0 10px;
    display: inline-block;
    margin-right: 10px;
}

.mini-service-list .dot {
    margin-top: 6px;
}

.btn-full {
    width: 100%;
    padding: 20px;
    font-size: 18px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: var(--radius-sm);
    color: var(--dark);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 4px 8px rgba(201, 110, 43, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-content strong {
    color: var(--secondary);
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-content span {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* About Section */
.about-section {
    background-color: var(--light);
    padding: 80px 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.about-title {
    font-size: 42px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-text {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.95;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0 0;
    justify-content: flex-start;
}

.about-badge {
    background: var(--secondary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 8px rgba(93, 75, 58, 0.2);
    transition: var(--transition);
}

.about-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(93, 75, 58, 0.3);
}

/* Services Detailed Grid */
.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-detailed-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    border-bottom: 4px solid var(--primary);
}

.service-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
}

.icon-box {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 110, 43, 0.1);
    color: var(--primary);
    font-size: 28px;
    flex-shrink: 0;
}

.service-header h3 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin: 0;
    flex: 1;
}

.service-detailed-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detailed-card li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--gray);
    font-size: 16px;
}

.service-detailed-card li:before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 8px;
}

/* Full Service Banner */
.full-service-banner {
    background: linear-gradient(120deg, var(--secondary), #7a5a44);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem auto 0;
    text-align: center;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.full-service-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.full-service-banner p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.full-service-banner i {
    margin-right: 8px;
}

/* Gallery */
.gallery {
    background-color: var(--light);
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    padding-bottom: 10px;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 10px;
}

.gallery-slide[data-images-per-slide="2"] {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-slide[data-images-per-slide="3"] {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-slide[data-images-per-slide="4"] {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--white);
    transition: var(--transition);
    height: 250px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 44, 44, 0.9), transparent);
    color: var(--white);
    padding: 20px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-caption.show-immediately {
    opacity: 1;
}

.gallery-item:hover .image-caption:not(.show-immediately) {
    opacity: 1;
}

.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.gallery-dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

.gallery-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.gallery-arrow {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    box-shadow: var(--shadow);
}

.gallery-arrow:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

/* Testimonials */
.testimonials {
    background-color: var(--light);
    position: relative;
}

.testimonials-slider-container {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius);
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    min-width: 100%;
    border: 1px solid var(--border);
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.testimonial-text:before {
    content: "“";
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    color: var(--primary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 50px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background-color: rgba(201, 110, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    font-weight: bold;
}

.author-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--secondary);
}

.author-info p {
    color: var(--gray);
    font-size: 16px;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    height: 20px;
}

.testimonials-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.testimonials-dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

.testimonials-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.testimonials-arrow {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    box-shadow: var(--shadow);
}

.testimonials-arrow:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    background-color: var(--light);
    padding: 30px;
    border-radius: var(--radius);
}

.contact-info h3 {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.contact-icon {
    background-color: var(--primary);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.social-icons-handyman {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons-handyman a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
    color: var(--white);
}

.social-icons-handyman a:hover {
    transform: scale(1.1);
}

.social-icons-handyman .facebook {
    background: #1877F2;
}

.social-icons-handyman .instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-icons-handyman .tiktok {
    background: #000000;
}

/* Form Card */
.form-card {
    background-color: var(--light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    border: 1px solid var(--border);
}

.form-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.form-subtitle {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 18px;
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
    color: var(--secondary);
}

input, select, textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 17px;
    transition: var(--transition);
    background-color: var(--white);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201, 110, 43, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* Map Container */
.map-container {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 50px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    text-align: left;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-contact {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-license {
    color: var(--primary);
    font-weight: bold;
    margin: 0.5rem 0;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 900;
}

.sticky-buttons {
    display: flex;
    gap: 15px;
}

.sticky-buttons .btn {
    flex: 1;
}

/* Floating Action Buttons */
.floating-btn {
    position: fixed;
    right: 18px;
    z-index: 1001;
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.floating-btn.sms {
    bottom: 88px;
    background-color: var(--primary);
    color: var(--white);
}

.floating-btn.call {
    bottom: 148px;
    background-color: var(--secondary);
    color: var(--white);
}

.floating-btn i {
    font-size: 18px;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.city-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--secondary);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.city-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: -30px auto 40px;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.section-subtitle.centered {
    text-align: center;
    margin: 20px auto;
}

.section-subtitle.small {
    font-size: 0.95rem;
    margin: -10px auto 30px;
}

/* Two Column List */
.two-column-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
    h1 {
        font-size: 54px;
    }
    
    .hero-grid {
        gap: 40px;
    }

    .section-title {
        font-size: 38px;
    }
    
    .gallery-slide {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1080px) {
    .topbar-inner {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 992px) {
    body {
        font-size: 17px;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    nav {
        display: none;
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--dark) 0%, #3d3d3d 100%);
        flex-direction: column;
        padding: 30px;
        gap: 25px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    nav.active {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-sticky-cta {
        display: block;
    }
    
    .floating-btn {
        display: none;
    }
    
    .services-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .logo-image {
        max-height: 70px;
    }


    h1 {
        font-size: 44px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        padding: 30px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .gallery-slide,
    .gallery-slide[data-images-per-slide="4"],
    .gallery-slide[data-images-per-slide="3"],
    .gallery-slide[data-images-per-slide="2"] {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .testimonial-text {
        font-size: 18px;
        padding-left: 20px;
    }
    
    .testimonial-text:before {
        font-size: 40px;
    }
    
    .hero-card {
        padding: 25px;
    }
    
    .hero-card h3 {
        font-size: 24px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .two-column-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .author-info h4 {
        font-size: 18px;
    }
    
    .hero-card {
        padding: 20px;
    }
    
    .mini-service-list li {
        font-size: 15px;
        padding: 10px 0;
    }
    
    .full-service-banner h3 {
        font-size: 1.4rem;
    }
    
    .full-service-banner p {
        font-size: 1rem;
    }
}

/* Form Messages */
.form-message.form-message--error {
    border: 2px solid #dc2626;
    background-color: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin: 20px 0;
    font-weight: 500;
    text-align: center;
}

.form-message.form-message--success {
    border: 2px solid #059669;
    background-color: rgba(5, 150, 105, 0.1);
    color: #059669;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin: 20px 0;
    font-weight: 500;
    text-align: center;
}

/* Fix for button icon spacing */
.btn-accent i,
.btn-primary i,
.btn-outline i {
    margin-right: 8px;
}

/* Hero Full Width */
.hero-grid-full {
    display: grid;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content-full {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-full .hero-points {
    justify-content: center;
}

.hero-content-full .hero-cta {
    justify-content: center;
}

.hero-content-full .owner-name {
    text-align: center;
}

/* Fix for mobile content width - add to existing styles */

/* Ensure container takes full width on mobile */
@media (max-width: 992px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
    
    /* Fix for main content width */
    main {
        width: 100%;
        overflow-x: hidden;
    }
    
    /* Ensure sections take full width */
    section {
        width: 100%;
    }
    
    /* Ensure hero content is full width */
    .hero-content-full {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    /* Fix for services grid on mobile */
    .services-detailed-grid {
        width: 100%;
    }
    
    .service-detailed-card {
        width: 100%;
    }
}

/* Logo responsive sizing */
@media (max-width: 768px) {
    .logo-image {
        max-height: 75px;
        width: auto;
    }
    
    /* Adjust header padding for smaller logo */
    .header-container {
        padding: 10px 0;
    }
    
    /* Adjust hero top padding for smaller header */
    .hero {
        padding: 60px 0 80px;
    }
}

/* Ensure all content containers are full width */
.section .container,
.about-section .container,
.contact-section .container,
.testimonials .container,
.gallery .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Mobile specific overrides */
@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content-full {
        padding: 0;
    }
    
    .hero-points span {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin: -20px auto 30px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .owner-name {
        font-size: 1.2rem !important;
    }
}

/* Fix for any overflowing elements */
img, iframe, .gallery-item, .service-detailed-card, .feature-card {
    max-width: 100%;
}

/* Ensure form elements don't overflow */
.form-card {
    width: 100%;
    box-sizing: border-box;
}

input, select, textarea, .btn {
    max-width: 100%;
    box-sizing: border-box;
}