/*
Version: 2
Update Notes: Updated color scheme to green tones, improved design elements, and removed styles for removed sections
*/

/* Base Styles and CSS Reset */
:root {
    --primary-color: #2e7d32; /* Dark green */
    --secondary-color: #1b5e20; /* Darker green */
    --accent-color: #4caf50; /* Medium green */
    --light-accent: #81c784; /* Light green */
    --text-color: #333;
    --light-text: #f5f5f5;
    --background-color: #f1f8e9; /* Very light green background */
    --card-bg: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    background-image: linear-gradient(120deg, rgba(240, 248, 235, 0.7) 0%, rgba(227, 242, 218, 0.7) 100%);
}

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

h1, h2, h3 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 1.8rem 0;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%231b5e20" opacity="0.2"/></svg>');
    background-size: cover;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo i {
    font-size: 2.8rem;
    color: var(--light-accent);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.logo h1 {
    font-size: 2.2rem;
    margin-bottom: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Main Content Styles */
main {
    padding: 2.5rem 0;
}

section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 3px;
}

/* Construction Notice Styles */
.construction-notice {
    text-align: center;
    padding: 4rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.construction-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="25" cy="25" r="5" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="5" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="25" r="5" fill="%23ffffff" opacity="0.05"/><circle cx="25" cy="75" r="5" fill="%23ffffff" opacity="0.05"/></svg>');
    background-size: 50px 50px;
}

.notice-content {
    position: relative;
    z-index: 1;
}

.construction-notice h2 {
    color: var(--light-text);
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.construction-notice h2::after {
    background-color: var(--light-accent);
}

.progress-container {
    margin: 2.5rem auto;
    max-width: 500px;
}

.progress-bar {
    height: 24px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.2rem;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.progress {
    height: 100%;
    width: 75%;
    background-color: var(--light-accent);
    border-radius: 12px;
    animation: progress-animation 2s ease-in-out;
    background-image: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.15) 25%, 
        transparent 25%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.15) 50%, 
        rgba(255, 255, 255, 0.15) 75%, 
        transparent 75%, 
        transparent);
    background-size: 40px 40px;
    animation: progress-animation 2s ease-in-out, progress-stripes 1s linear infinite;
}

.progress-text {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.message {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.arizona-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.arizona-info p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.arizona-info .highlight {
    color: var(--light-accent);
    font-weight: bold;
}

/* Services Styles */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    background-color: var(--card-bg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Contact Styles */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.2);
}

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

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 1.5rem 0;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--light-accent), var(--accent-color), var(--light-accent));
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--light-text);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Animations */
@keyframes progress-animation {
    from {
        width: 0;
    }
    to {
        width: 75%;
    }
}

@keyframes progress-stripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 0;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .construction-notice h2 {
        font-size: 2.2rem;
    }
    
    .message {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 1.8rem;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .construction-notice h2 {
        font-size: 1.8rem;
    }
} 