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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    background: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    position: relative;
}

.logo-container {
    width: 100%;
    max-width: 600px;
    margin-bottom: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.logo {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

.logo-placeholder {
    background: #f0f0f0;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px dashed #ccc;
    border-radius: 10px;
    font-size: 1.5rem;
    color: #666;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #2c5530;
    text-align: center;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3em;
}

.hero h1 span {
    white-space: nowrap;
}

.hero .tagline {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    background: linear-gradient(135deg, #66bb6a, #4caf50);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #4caf50, #45a049);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Main Content Section */
.main-content {
    background: linear-gradient(180deg, #4caf50 0%, #66bb6a 100%);
    padding: 4rem 1rem;
    position: relative;
    min-height: 100vh;
}

/* Floating Poop Emojis */
.poop-emoji {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 10;
}

.poop-emoji.fade-out {
    opacity: 0;
}

@keyframes float1 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) translateX(20px) rotate(5deg);
    }
    66% {
        transform: translateY(20px) translateX(-20px) rotate(-5deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(25px) translateX(-30px) rotate(-8deg);
    }
    50% {
        transform: translateY(-20px) translateX(15px) rotate(4deg);
    }
    75% {
        transform: translateY(30px) translateX(25px) rotate(6deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    30% {
        transform: translateY(-35px) translateX(-15px) rotate(-6deg);
    }
    60% {
        transform: translateY(15px) translateX(30px) rotate(7deg);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    20% {
        transform: translateY(20px) translateX(25px) rotate(5deg);
    }
    40% {
        transform: translateY(-25px) translateX(-20px) rotate(-4deg);
    }
    60% {
        transform: translateY(30px) translateX(-30px) rotate(-7deg);
    }
    80% {
        transform: translateY(-15px) translateX(20px) rotate(3deg);
    }
}

@keyframes float5 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-40px) translateX(10px) rotate(6deg);
    }
    50% {
        transform: translateY(10px) translateX(-25px) rotate(-5deg);
    }
    75% {
        transform: translateY(25px) translateX(15px) rotate(4deg);
    }
}

@keyframes float6 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    35% {
        transform: translateY(18px) translateX(-28px) rotate(-7deg);
    }
    70% {
        transform: translateY(-28px) translateX(22px) rotate(8deg);
    }
}

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

.services {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services h2 {
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.service-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.pricing {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing h2 {
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.price-cards {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .price-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.price-card {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.price-card .price {
    font-size: 2.5rem;
    color: #2c5530;
    font-weight: bold;
    margin: 1rem 0;
}

.contact {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.contact h2 {
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1.2rem;
    color: #333;
}

.contact-item span {
    margin: 0;
    padding: 0;
}

.contact-button {
    background: linear-gradient(135deg, #66bb6a, #4caf50);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Footer */
.footer {
    background: #2c5530;
    color: white;
    padding: 3rem 1rem 1rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
    justify-content: space-around;
}

.footer-section {
    flex: 1 1 250px;
    min-width: 250px;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #66bb6a;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section ul {
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #66bb6a;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #66bb6a;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-section {
        text-align: center;
        min-width: 100%;
    }

    .social-links {
        justify-content: center;
    }
}

/* Mobile-first responsive adjustments */
@media (max-width: 480px) {
    .hero {
        padding: 1rem;
    }

    .logo-container {
        max-width: 200px;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .services, .pricing, .contact {
        padding: 1.5rem;
    }
}

/* Quote Form Styles */
.quote-form {
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: left;
}

.form-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-group label {
    color: #2c5530;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group .required {
    color: #d32f2f;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group select {
    cursor: pointer;
    background-color: white;
}

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

.submit-button {
    background: linear-gradient(135deg, #66bb6a, #4caf50);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    margin-top: 0.5rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #4caf50, #45a049);
}

.submit-button:active {
    transform: translateY(0);
}

.contact-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
    color: #666;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    flex: 1;
    border-bottom: 2px solid #e0e0e0;
}

.contact-divider span {
    padding: 0 1rem;
    font-weight: 600;
    color: #2c5530;
}

/* Mobile adjustments for form */
@media (max-width: 480px) {
    .quote-form {
        padding: 0 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.95rem;
    }

    .submit-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

/* Form Success/Error Messages */
.form-message {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Disabled submit button state */
.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}
