/* styles.css - No changes from previous version */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

body.loaded {
    opacity: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: #00796b; /* Teal green */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.logo-placeholder img {
    height: 50px;
    width: auto;
    background-color: #fff;
    padding: 5px;
    border-radius: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #a5d6a7; /* Light green accent */
}

.hero {
    background-color: #4caf50; /* Green */
    color: white;
    text-align: center;
    padding: 120px 20px;
    animation: fadeIn 1s ease-in;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.subheadline {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #00796b;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #004d40;
}

.cta-button.secondary {
    background-color: #66bb6a;
}

.cta-button.secondary:hover {
    background-color: #388e3c;
}

.services-teaser, .testimonials {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff;
}

.services-teaser {
    background-color: #e8f5e9;
}

.services-grid, .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-item, .testimonial-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-item:hover, .testimonial-item:hover {
    transform: translateY(-10px);
}

.portfolio {
    background-color: #f1f8e9;
    padding: 80px 20px;
    text-align: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.testimonial-item cite {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #4caf50;
}

.ctas {
    background-color: #4caf50;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

footer {
    background-color: #00796b;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

footer a {
    color: #a5d6a7;
    text-decoration: underline;
}

.map-snippet {
    margin-top: 30px;
}

.map-snippet iframe {
    max-width: 100%;
    border-radius: 8px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .subheadline {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 30px;
    }
}

/* Smaller hero for inner pages */
.about-hero {
    padding: 100px 20px; /* Smaller than main hero */
}

.about-hero .subheadline {
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* About content section - uses existing container and grid patterns */
.about-content {
    padding: 80px 20px;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    color: #00796b;
    margin-bottom: 20px;
    font-size: 32px;
}

.about-text p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.skills-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.skills-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 18px;
}

.skills-list li::before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 24px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Active navigation link highlight */
.nav-links a.active {
    color: #a5d6a7 !important;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-hero {
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
    
    .about-hero .subheadline {
        font-size: 18px;
    }
    
    .skills-list li {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 32px;
    }
}

/* Smaller hero for services page */
.services-hero {
    padding: 100px 20px;
}

.services-hero .subheadline {
    max-width: 900px;
    margin: 0 auto 30px auto;
}

/* Enhanced service card styling */
.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #4caf50, #00796b);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card h2 {
    color: #00796b;
    margin-bottom: 20px;
    font-size: 30px;
    position: relative;
}

/* Prominent pricing box */
.price-box {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.3);
    font-weight: bold;
}

.price-label {
    display: block;
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.price-amount {
    display: block;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 5px;
}

.price-per {
    display: block;
    font-size: 20px;
    opacity: 0.9;
}

.price-note {
    display: block;
    font-size: 16px;
    margin-top: 10px;
    opacity: 0.9;
    font-weight: normal;
}

/* Feature list enhancements */
.feature-list li {
    padding: 12px 0 12px 35px;
    font-size: 17px;
}

.feature-list li::before {
    font-size: 24px;
    left: 5px;
}

/* Button spacing */
.service-card .cta-button {
    margin-top: 10px;
    padding: 14px 32px;
    font-size: 17px;
}

/* Responsive fine-tuning */
@media (max-width: 768px) {
    .price-amount {
        font-size: 40px;
    }
    
    .price-label {
        font-size: 16px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
}

/* Contact page hero */
.contact-hero {
    padding: 100px 20px;
}

.contact-hero .subheadline {
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Contact section */
.contact-section {
    padding: 80px 20px;
    background-color: #f1f8e9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper h2,
.contact-info h2 {
    color: #00796b;
    margin-bottom: 30px;
    font-size: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #00796b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4caf50;
}

.contact-form button {
    align-self: flex-start;
    padding: 16px 40px;
    font-size: 18px;
}

.form-note {
    margin-top: 15px;
    font-style: italic;
    color: #666;
}

.contact-info .info-item {
    margin-bottom: 30px;
}

.contact-info .info-item strong {
    display: block;
    color: #00796b;
    margin-bottom: 8px;
}

.contact-info a {
    color: #4caf50;
    font-size: 20px;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.quick-cta {
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-hero {
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        text-align: center;
    }

    .quick-cta {
        text-align: center;
    }

    .contact-form button {
        width: 100%;
    }
}

/* Add these new styles to the bottom of your existing styles.css */

.thank-you-message {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    margin-bottom: 30px;
}

.thank-you-message h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.thank-you-message p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.thank-you-message a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}
