/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #0a0500;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sen', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #ffcd05;
    color: #0a0500;
}

.btn-primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Sen', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a0500;
}

.logo img {
    width: 40px;
    height: 40px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: #0a0500;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #ffcd05;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0a0500;
    font-weight: 600;
}

.header-contact i {
    color: #ffcd05;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/home-hero-background.webp');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px !important;
    color: white;
    padding: 2rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.hero-text h2 {
    color: #ffcd05;
    margin-bottom: 1.5rem;
}

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

.hero-text .btn {
    align-self: center;
}

.appointment-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.appointment-form h3 {
    color: #0a0500;
    margin-bottom: 1.5rem;
    text-align: center;
}

.appointment-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.appointment-form input,
.appointment-form select {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.appointment-form input:focus,
.appointment-form select:focus {
    outline: none;
    border-color: #ffcd05;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: #f7f7f7;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #ffcd05;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: #0a0500;
}

.service-card h3 {
    margin-bottom: 1.5rem;
    color: #0a0500;
}

.service-card ul {
    text-align: left;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.service-card li {
    margin-bottom: 0.5rem;
    color: #666;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffcd05;
    margin-top: 1rem;
}

/* Windows Cleaning Section */
.windows-cleaning {
    padding: 5rem 0;
    background-color: white;
}

.windows-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.windows-text h2 {
    margin-bottom: 1.5rem;
}

.windows-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.windows-text li {
    margin-bottom: 0.5rem;
    color: #666;
}

.windows-text p {
    color: #666;
    margin-bottom: 1.5rem;
}

.price-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: #ffcd05;
}

.windows-image img {
    width: 100%;
    border-radius: 10px;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background-color: #f7f7f7;
}

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

.step {
    text-align: center;
    padding: 2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: #ffcd05;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 2rem;
    color: #0a0500;
}

.step h3 {
    margin-bottom: 1rem;
}

.step p {
    color: #666;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background-color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: #f7f7f7;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.pricing-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.pricing-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffcd05;
}

.pricing-notes {
    background-color: #f7f7f7;
    padding: 2rem;
    border-radius: 10px;
}

.pricing-notes ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.pricing-notes li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Career Section */
.career {
    padding: 5rem 0;
    background-color: #f7f7f7;
}

.career-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.career-text h2 {
    margin-bottom: 1.5rem;
}

.career-text p {
    color: #666;
    margin-bottom: 1.5rem;
}

.career-image img {
    width: 100%;
    border-radius: 10px;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background-color: #f7f7f7;
    border-radius: 10px;
}

.feature i {
    font-size: 2rem;
    color: #ffcd05;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
}

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

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: #f7f7f7;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ffcd05;
}

.privacy-notice {
    margin: 1rem 0;
}

.privacy-notice p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h4 {
    color: #0a0500;
    margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item li {
    color: #666;
    margin-bottom: 0.3rem;
}

.contact-item a {
    color: #ffcd05;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item ul {
    list-style: none;
    padding-left: 1rem;
}

/* Footer */
.footer {
    background-color: #0a0500;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo span {
    font-family: 'Sen', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo p {
    color: #ccc;
    margin-top: 1rem;
}

.footer h4 {
    color: #ffcd05;
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 0.5rem;
}

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

.footer a:hover {
    color: #ffcd05;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #ffcd05;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav ul {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text {
        text-align: center;
        width: 100%;
    }
    
    .windows-content,
    .career-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .appointment-form,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.service-card,
.step,
.pricing-card,
.feature {
    animation: fadeInUp 0.6s ease-out;
}