/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

/* Color Variables - Edit these to change your color scheme */
:root {
    --primary-color: #e65c00;
    --primary-hover: #ff7722;
    --primary-light: #ff8533; 
    --dark-gray: #333333;
    --medium-gray: #666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
}

/* Enhanced Header Styles with Dots and Navigation */
header {
    background: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0),
        linear-gradient(135deg, var(--dark-gray) 0%, #2a2a2a 50%, var(--dark-gray) 100%);
    background-size: 20px 20px, 100% 100%;
    color: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Scrolled state with enhanced dots */
header.scrolled {
    background: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.2) 1px, transparent 0),
        linear-gradient(135deg, rgba(51,51,51,0.95) 0%, rgba(42,42,42,0.98) 50%, rgba(51,51,51,0.95) 100%);
    background-size: 15px 15px, 100% 100%;
    backdrop-filter: blur(8px);
}

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

/* Brand/Logo styling with hover effect */
.brand {
    display: flex;
    align-items: center;
    padding: 12px 0;
    transition: all 0.3s ease;
}

header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

header h2::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

header h2:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

header.scrolled h2 {
    font-size: 1.4rem;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    z-index: 101;
}

.menu-toggle:hover {
    color: var(--primary-light);
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Enhanced Navigation with top and bottom lines */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-links li {
    position: relative;
    margin: 0;
}

.nav-links a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 28px 20px;
    transition: all 0.3s ease;
    position: relative;
}

header.scrolled .nav-links a {
    padding: 22px 20px;
}

/* Top line */
.nav-links a::before {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    top: 8px;
    left: 0;
    background-color: var(--primary-color);
    transform-origin: left;
    transition: transform 0.3s ease-out;
}

/* Bottom line */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: 8px;
    left: 0;
    background-color: var(--primary-color);
    transform-origin: right;
    transition: transform 0.3s ease-out;
}

/* Hover and active states */
.nav-links a:hover::before,
.nav-links a.active::before {
    transform: scaleX(1);
    transform-origin: right;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a.active {
    color: var(--primary-light);
    font-weight: 600;
}

/* Scrolled state line adjustments */
header.scrolled .nav-links a::before {
    top: 6px;
}

header.scrolled .nav-links a::after {
    bottom: 6px;
}

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

/* Hero Section with Enhanced Dots */
.hero {
    position: relative;
    height: 700px;
    overflow: hidden;
    background: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.1) 1px, transparent 0),
        radial-gradient(circle at 10px 10px, rgba(255,255,255,0.05) 1px, transparent 0),
        linear-gradient(45deg, rgba(51,51,51,0.9) 0%, rgba(30,30,30,0.95) 50%, rgba(51,51,51,0.9) 100%);
    background-size: 20px 20px, 40px 40px, 100% 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(51, 51, 51, 0.9) 30%, rgba(51, 51, 51, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    padding: 60px 0;
}

.hero-text {
    flex: 1;
    color: var(--white);
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-check-list {
    list-style: none;
    margin-bottom: 30px;
}

.hero-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.hero-check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Form Container and Steps */
.form-container {
    flex: 1;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    padding: 0;
    max-width: 500px;
    margin-left: auto;
    overflow: visible;
    min-width: 280px;
}

.form-progress {
    display: flex;
    padding: 0;
    background-color: #f0f0f0;
}

.progress-step {
    flex: 1;
    text-align: center;
    padding: 15px 5px;
    background-color: #f0f0f0;
    color: #777;
    position: relative;
    font-size: 0.9rem;
    font-weight: 600;
}

.progress-step.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.progress-step.completed {
    background-color: var(--primary-light);
    color: var(--white);
}

.form-body {
    padding: 30px 15px;
    overflow: visible;
    position: relative;
}

.form-step {
    display: none;
    overflow: visible;
}

.form-step.active {
    display: block;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

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

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-check {
    margin-bottom: 10px;
}

/* Form Actions and Buttons */
.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 15px;
    width: 100%;
    position: relative;
    overflow: visible;
}

.btn {
    display: inline-block;
    padding: 10px 14px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: visible;
    font-size: 0.95rem;
    line-height: 1.4;
    min-width: fit-content;
}

.btn[id^="next-to-step"] {
    max-width: none;
    width: auto;
    position: relative;
    z-index: 10;
}

.btn:hover {
    background-color: var(--primary-hover);
}

.btn-secondary {
    background-color: #777;
}

.btn-secondary:hover {
    background-color: #666;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-light {
    background-color: var(--white);
}

/* Light Grey Sections (keeping original behavior) */
.section-dark {
    background-color: var(--light-gray);
}

/* Actually Dark Sections with Dots (for specific sections) */
.section-truly-dark {
    background: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0),
        linear-gradient(135deg, var(--dark-gray) 0%, #2a2a2a 30%, #1a1a1a 70%, var(--dark-gray) 100%);
    background-size: 25px 25px, 100% 100%;
    color: var(--white);
}

/* Ensure text is visible in truly dark sections */
.section-truly-dark h2,
.section-truly-dark h3,
.section-truly-dark h4,
.section-truly-dark p,
.section-truly-dark li {
    color: var(--white);
}

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

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-heading p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto;
}

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

.service-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--white);
}

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

.service-img {
    height: 200px;
    overflow: hidden;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.image-box {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-box img {
    width: 100%;
    display: block;
}

/* Process Section - FIXED for text visibility */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateY(-10px);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-item h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Ensure text in process items is always readable regardless of section background */
.process-item h3,
.process-item p {
    color: var(--dark-gray) !important;
}

/* Override any inherited styles from dark sections */
.section-truly-dark .process-item h3,
.section-truly-dark .process-item p,
.section-dark .process-item h3,
.section-dark .process-item p {
    color: var(--dark-gray) !important;
}

/* Features Section */
.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(230, 92, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

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

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-question.active:after {
    content: "-";
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-question.active + .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Gallery Section */
.patio-gallery,
.pattern-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item,
.pattern-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover,
.pattern-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Pattern Item Specific */
.pattern-image {
    height: 200px;
    overflow: hidden;
}

.pattern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pattern-info {
    padding: 20px;
}

.pattern-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.pattern-info p {
    color: #666;
    font-size: 0.9rem;
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.color-swatch {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 1px #ddd;
}

/* Testimonials Section */
.testimonial-item {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Project Gallery */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: translateY(-10px);
}

.project-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.project-caption {
    padding: 10px;
    text-align: center;
    font-weight: 600;
    color: #555;
    background-color: var(--white);
}

/* Concrete Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* CTA Section with Enhanced Dots */
.cta {
    position: relative;
    background: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.2) 1px, transparent 0),
        linear-gradient(135deg, rgba(230, 92, 0, 0.95) 0%, rgba(255, 117, 24, 0.85) 50%, rgba(230, 92, 0, 0.95) 100%);
    background-size: 18px 18px, 100% 100%;
    color: var(--white);
    text-align: center;
    padding: 90px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMSI+PC9yZWN0Pgo8cGF0aCBkPSJNMCA1TDUgMFpNNiA0TDQgNlpNLTEgMUwxIC0xWiIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZS1vcGFjaXR5PSIwLjA1Ij48L3BhdGg+Cjwvc3ZnPg==');
    opacity: 0.4;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 92, 0, 0.95) 0%, rgba(255, 117, 24, 0.85) 100%);
    z-index: 1;
}

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

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cta p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.25rem;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.btn-cta {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15), 
                0 0 0 6px rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    animation: pulse 2s infinite;
}

.btn-cta:before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 8px;
    background: linear-gradient(45deg, rgba(255,255,255,0.4), rgba(255,255,255,0), rgba(255,255,255,0.4));
    z-index: -1;
    animation: shimmer 3s infinite;
}

.btn-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2), 
                0 0 0 8px rgba(255,255,255,0.2);
    background: linear-gradient(to right, #fff, #f8f8f8);
}

.btn-cta:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 3px 6px rgba(0,0,0,0.1),
                0 0 0 4px rgba(255,255,255,0.1);
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 6px 12px rgba(0,0,0,0.15), 0 0 0 6px rgba(255,255,255,0.1); }
    50% { box-shadow: 0 8px 16px rgba(0,0,0,0.2), 0 0 0 10px rgba(255,255,255,0.2); }
    100% { box-shadow: 0 6px 12px rgba(0,0,0,0.15), 0 0 0 6px rgba(255,255,255,0.1); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

/* Page Banner (for Contact Page) */
.page-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    background-color: #333;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.7;
}

.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.banner-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 40px;
}

.contact-info h3,
.contact-form h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3:after,
.contact-form h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(230, 92, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #444;
}

.contact-text p, 
.contact-text a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.hours-list {
    list-style: none;
    margin-top: 10px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
}

.hours-list li:last-child {
    border-bottom: none;
}

.service-areas {
    margin-top: 40px;
}

.areas-list {
    column-count: 2;
    column-gap: 30px;
    list-style: none;
    margin-top: 20px;
}

.areas-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    break-inside: avoid;
}

.areas-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-form {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 40px;
}

.map-container {
    margin-top: 80px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
}

.map-heading {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.map-heading h3 {
    margin: 0;
    font-size: 1.5rem;
}

/* Form Messages */
.form-message {
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Footer with Enhanced Dots */
footer {
    background: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.1) 1px, transparent 0),
        linear-gradient(180deg, var(--dark-gray) 0%, #222222 50%, #1a1a1a 100%);
    background-size: 22px 22px, 100% 100%;
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-light);
}

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

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

.footer-links a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #c0c0c0;
}

/* Walkway page styles */
.walkway-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.walkway-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.walkway-item:hover {
    transform: translateY(-10px);
}

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

.walkway-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.walkway-info {
    padding: 20px;
}

.walkway-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.walkway-info p {
    color: #666;
    font-size: 0.9rem;
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Service Areas Page - Specific Styles */
.areas-list {
    list-style: none;
    padding-left: 0;
}

.areas-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    break-inside: avoid;
}

.areas-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links.mobile-active {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background-color: var(--dark-gray);
        flex-direction: column;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding-top: 70px;
        transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        overflow-y: auto;
        transform: translateX(100%);
    }
    
    .nav-links.mobile-active.active {
        transform: translateX(0);
    }
    
    .nav-links.mobile-active li {
        width: 100%;
        opacity: 0;
        transform: translateY(-10px);
    }
    
    .nav-links.mobile-active.active li {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.3s ease;
    }
    
    .nav-links.mobile-active.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.mobile-active.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.mobile-active.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.mobile-active.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.mobile-active.active li:nth-child(5) { transition-delay: 0.5s; }
    .nav-links.mobile-active.active li:nth-child(6) { transition-delay: 0.6s; }
    .nav-links.mobile-active.active li:nth-child(7) { transition-delay: 0.7s; }
    
    .nav-links.mobile-active a {
        padding: 15px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-links.mobile-active a::before,
    .nav-links.mobile-active a::after {
        display: none;
    }
    
    .nav-links.mobile-active a:hover,
    .nav-links.mobile-active a.active {
        background-color: rgba(255, 255, 255, 0.05);
        padding-left: 30px;
    }

    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        padding-bottom: 40px;
    }
    
    .form-container {
        max-width: 100%;
        margin-left: 0;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .patio-gallery,
    .pattern-gallery,
    .walkway-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .project-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .areas-list {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    /* Smaller dots on mobile */
    header {
        background-size: 15px 15px, 100% 100%;
    }
    
    header.scrolled {
        background-size: 12px 12px, 100% 100%;
    }
    
    .section-truly-dark {
        background-size: 20px 20px, 100% 100%;
    }
    
    .hero {
        height: auto;
        background-size: 15px 15px, 30px 30px, 100% 100%;
    }
    
    .cta {
        background-size: 15px 15px, 100% 100%;
    }
    
    footer {
        background-size: 18px 18px, 100% 100%;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-links {
        margin-top: 15px;
        justify-content: center;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .page-banner {
        height: 300px;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .areas-list {
        column-count: 1;
    }
    
    .patio-gallery,
    .pattern-gallery,
    .walkway-gallery {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonial-item {
        padding: 20px;
    }
    
    .service-img {
        height: 180px;
    }
}