body {
    margin: 0;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
    font-weight: 400;
    line-height: 1.5;
}
header {
    background: #2c3e50;
    padding: 10px 20px;
    position: relative;
    z-index: 1000;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    color: #fff;
    font-size: 1.5em;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.phone-link {
    text-decoration: none;
    color: #fff;
    background: #e67e22;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

.phone-link:hover {
    background: #d35400;
    transform: translateY(-1px);
}

.phone-number {
    font-size: 1em;
    letter-spacing: 0.5px;
}

/* Mobile responsive navigation */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .phone-link {
        align-self: center;
        font-size: 1.1em;
        padding: 10px 20px;
    }
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}
.nav-links a.active {
    text-decoration: underline;
}
.hero {
    position: relative;
    text-align: center;
    padding: 120px 20px 80px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url('images/walker_vista_2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    min-height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    z-index: -1;
    will-change: transform;
}

.hero h1 {
    font-size: 3.2em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: -1px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 1.4em;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    max-width: 600px;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

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

/* Mobile fallback for fixed background */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        padding: 80px 20px 60px 20px;
        min-height: 55vh;
    }
    
    .hero h1 {
        font-size: 2.4em;
    }
    
    .hero p {
        font-size: 1.2em;
    }
}
.btn {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    background: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* Company Description Section */
.company-intro {
    padding: 60px 20px;
    background: #fff;
    color: #333;
    position: relative;
    z-index: 2;
}

.company-intro .content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.company-intro h2 {
    font-size: 2.5em;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.company-intro p {
    font-size: 1.2em;
    font-weight: 300;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.company-intro .highlight {
    color: #e67e22;
    font-weight: 500;
}

/* Services Overview Section */
.services-overview {
    padding: 80px 20px;
    background: #f8f9fa;
    color: #333;
}

.services-overview .content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-overview h2 {
    font-size: 2.5em;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

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

.service-preview {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    overflow: hidden;
}

.service-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-preview-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.service-preview h3 {
    font-size: 1.6em;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-preview p {
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.service-icon {
    font-size: 3em;
    color: #e67e22;
    margin-bottom: 20px;
    display: block;
}

.services-cta {
    margin-top: 50px;
}

.services-cta .btn {
    background: #2c3e50;
}

.services-cta .btn:hover {
    background: #34495e;
}

/* Social Media Section */
.social-connect {
    padding: 80px 20px;
    background: #2c3e50;
    color: #fff;
    text-align: center;
}

.social-connect .content {
    max-width: 800px;
    margin: 0 auto;
}

.social-connect h2 {
    font-size: 2.5em;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.social-connect > p {
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 40px;
    color: #bdc3c7;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background: #34495e;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
}

.social-link:hover {
    background: #3b5998;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-icon {
    width: 48px;
    height: 48px;
    background: #3b5998;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.social-link:hover .social-icon {
    background: #4267B2;
}

.social-content {
    text-align: left;
    flex: 1;
}

.social-content h3 {
    font-size: 1.4em;
    font-weight: 500;
    margin: 0 0 8px 0;
    color: #fff;
}

.social-content p {
    font-size: 1em;
    font-weight: 300;
    margin: 0;
    color: #bdc3c7;
    line-height: 1.4;
}

.social-cta {
    margin-top: 40px;
}

.social-cta p {
    font-size: 1.1em;
    font-weight: 300;
    color: #bdc3c7;
    margin: 0;
}

/* Responsive design for social section */
@media (max-width: 768px) {
    .social-connect {
        padding: 60px 20px;
    }
    
    .social-connect h2 {
        font-size: 2em;
    }
    
    .social-link {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .social-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .social-content {
        text-align: center;
    }
}
.content {
    padding: 20px;
    max-width: 900px;
    margin: auto;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}
.gallery-grid img {
    width: 100%;
    border-radius: 5px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.contact-form button {
    background: #2c3e50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
/* Service Cards */
.services-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 20px 0;
    width: 100%;
    max-width: 1200px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.service-main {
    display: flex;
    align-items: center;
    min-height: 160px;
}

.service-image {
    width: 250px;
    height: 160px;
    object-fit: cover;
    object-position: center;
    display: block;
    background-color: #f0f0f0;
    flex-shrink: 0;
}

/* Fallback for broken images */
.service-image[src=""],
.service-image:not([src]) {
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%),
                linear-gradient(-45deg, #f0f0f0 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #f0f0f0 75%),
                linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.service-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.service-title {
    color: #2c3e50;
    margin: 0;
    font-size: 1.6em;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.expand-icon {
    font-size: 1.4em;
    color: #e67e22;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.service-card.expanded .expand-icon {
    transform: rotate(180deg);
}

.service-summary {
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-size: 1.1em;
    font-weight: 300;
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    border-top: 1px solid #eee;
    margin: 0 20px;
}

.service-card.expanded .service-details {
    max-height: 400px;
    padding: 20px 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 8px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 1em;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: bold;
    font-size: 1.1em;
}

.service-price {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
    margin-top: 15px;
    text-align: center;
}

.service-price strong {
    color: #2c3e50;
    font-size: 1.1em;
    font-weight: 500;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .service-main {
        flex-direction: column;
        min-height: auto;
    }
    
    .service-image {
        width: 100%;
        height: 200px;
    }
    
    .service-content {
        padding: 15px;
    }
    
    .service-title {
        font-size: 1.4em;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .service-details {
        margin: 0 15px;
    }
}

footer {
    text-align: center;
    padding: 10px;
    background: #2c3e50;
    color: #fff;
}
