/* Add new Google Font import at the top */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Montserrat:wght@300&display=swap');

/* Reset defaults */
body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    background: #ffffff;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background: url('housekeeping_Brooksville_FL.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 0;
}

.hero-content {
    max-width: 650px;
    color: white;
    padding: 30px;
    animation: fadeIn 1.5s ease-out;
    background: rgba(26, 60, 52, 0.55);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 300;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-cta {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(90deg, #76c7c0, #5aa9a3);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(118, 199, 192, 0.3);
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(118, 199, 192, 0.4);
    background: linear-gradient(90deg, #5aa9a3, #76c7c0);
}

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

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
    .hero-content {
        padding: 25px;
        max-width: 90%;
    }

    .hero-section h1 {
        font-size: 2.4rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 20px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .hero-cta {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Fixed Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    padding: 0.5rem 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

header.sticky {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 90px;
    display: block;
}

/* Navigation Toggle (hidden by default) */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

nav {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex: 1;
}

nav a {
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 15px;
    position: relative;
    transition: color 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #76c7c0;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #1a3c34;
}

nav a:hover::after {
    width: 100%;
}

/* Main Content */
main {
    margin-top: 110px;
}

/* Section Styling */
section {
    padding: 30px 20px 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Alternating Background Colors */
#services {
    background-color: #e6f3f2;
}

#services p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

#about {
    background-color: #ffffff;
}

#contact {
    background-color: #e6f3f2;
}

#book {
    background-color: #ffffff;
}

h2 {
    font-family: 'Playfair Display', serif;
    color: #1a3c34;
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    width: 100%;
    font-weight: 600;
    letter-spacing: 0.5px;
}

h2:after {
    content: '';
    width: 60px;
    height: 3px;
    background: #76c7c0;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

/* Services Cards */
.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #76c7c0, #5aa9a3);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.price-tag {
    text-align: center;
    color: #5aa9a3;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    font-family: 'Playfair Display', serif;
}

.card h3 {
    color: #1a3c34;
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}

.card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #76c7c0;
}

.card p {
    margin: 12px 0;
    color: #555;
    font-size: 15px;
}

.card p strong {
    color: #1a3c34;
    font-weight: 600;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #444;
    font-size: 15px;
}

.card ul li:last-child {
    margin-bottom: 0;
}

.card ul li:before {
    content: "✓";
    color: #76c7c0;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.card small {
    display: block;
    color: #888;
    font-size: 13px;
    text-align: center;
    font-style: italic;
    margin-top: 5px;
    margin-bottom: 25px;
}

.button-container {
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.card .book-now-btn {
    padding: 14px 28px;
    background: linear-gradient(90deg, #76c7c0, #5aa9a3);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(118, 199, 192, 0.2);
    width: 100%;
    max-width: 200px;
}

.card .book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(118, 199, 192, 0.3);
    background: linear-gradient(90deg, #5aa9a3, #76c7c0);
}

/* Contact Info Styling */
.contact-info {
    text-align: center;
    max-width: 600px;
    margin: 30px auto;
}

.contact-info p {
    margin: 15px 0;
    font-size: 18px;
    color: #1a3c34;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info .icon {
    color: #76c7c0;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.contact-info p:hover .icon {
    transform: scale(1.2);
}

.contact-info strong {
    font-weight: 600;
}

/* Form Styling */
.form-intro {
    text-align: center;
    margin-bottom: 10px;
}

.form-intro p {
    color: #1a3c34;
    font-size: 16px;
    margin: 0;
}

.response-time {
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    color: #5aa9a3 !important;
    font-style: italic;
    font-size: 14px !important;
    text-align: center;
}

/* Success Message Styling */
.success-message {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #e6f7f5, #ffffff);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(118, 199, 192, 0.15);
    z-index: 1001;
    max-width: 90%;
    width: 500px;
}

/* Overlay for success message */
.success-message::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
}

.success-message h3 {
    color: #1a3c34;
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.success-message p {
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.close-message {
    background: #1a3c34;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.close-message:hover {
    background: #264942;
    transform: translateY(-2px);
}

/* Hide form when success message is shown */
.form-hidden {
    display: none;
}

/* Booking Form Styles */
.form-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
}

#booking-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e6f3f2;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: #1a3c34;
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #1a3c34;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #76c7c0;
    border-radius: 8px;
    font-size: 16px;
    color: #1a3c34;
    transition: border-color 0.3s ease;
    background: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #5aa9a3;
    box-shadow: 0 0 0 3px rgba(118, 199, 192, 0.1);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%231a3c34' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(90deg, #76c7c0, #5aa9a3);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 20px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(118, 199, 192, 0.2);
}

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

.form-notice {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 15px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .services-cards {
        gap: 20px;
        padding: 0 20px;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .card {
        padding: 30px;
        min-width: 260px;
    }
}

@media (max-width: 768px) {
    .services-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 0 20px;
    }

    .card {
        width: 100%;
        max-width: 500px;
        min-width: auto;
    }

    .price-tag {
        font-size: 16px;
    }

    .form-container {
        padding: 0 15px;
    }

    #booking-form {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-section h3 {
        font-size: 18px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    select,
    textarea {
        font-size: 15px;
        padding: 10px;
    }

    .submit-button {
        padding: 14px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .services-cards {
        padding: 0 15px;
    }

    .card {
        padding: 25px;
    }

    .card h3 {
        font-size: 24px;
    }

    .card ul {
        padding: 15px 0;
    }

    /* Navigation Dropdown */
    .header-container {
        padding: 0 15px;
    }
    
    .nav-toggle-label {
        display: block;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-toggle:checked ~ nav {
        display: flex;
    }

    nav a {
        font-size: 16px;
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }

    .logo {
        height: 60px;
    }

    main {
        margin-top: 90px;
    }

    section {
        padding: 20px 15px 40px 15px;
    }

    form {
        padding: 20px;
        gap: 12px;
    }

    .form-intro p {
        font-size: 15px;
    }

    .response-time {
        font-size: 13px !important;
    }

    input, select, textarea {
        padding: 8px;
        font-size: 14px;
    }

    label {
        font-size: 14px;
    }

    button[type="submit"] {
        padding: 10px;
        font-size: 15px;
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .logo-text {
        gap: 6px;
    }

    .company-name, .company-suffix {
        font-size: 24px;
    }

    .price-tag {
        font-size: 15px;
    }
    
    .card .book-now-btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    #booking-form {
        padding: 20px;
    }

    .form-section {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .success-message {
        padding: 25px;
        width: 85%;
    }

    .success-message h3 {
        font-size: 20px;
    }

    .success-message p {
        font-size: 15px;
    }

    .close-message {
        padding: 10px 20px;
        font-size: 15px;
    }
}

/* Testimonials Section */
#testimonials {
    background-color: #e6f3f2;
}

.testimonials-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform 0.3s ease;
}

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

.stars {
    color: #ffd700;
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    border-top: 2px solid #e6f3f2;
    padding-top: 15px;
}

.author-name {
    color: #1a3c34;
    font-weight: 600;
    margin: 0;
}

.location {
    color: #76c7c0;
    margin: 5px 0 0 0;
    font-size: 14px;
}

/* FAQ Section */
#faq {
    background-color: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: #ffffff;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1a3c34;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-icon {
    font-size: 20px;
    color: #76c7c0;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: #555;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Responsive adjustments for testimonials and FAQ */
@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%;
    }

    .faq-question {
        font-size: 15px;
        padding: 15px;
    }

    .faq-answer p {
        padding: 15px;
        font-size: 14px;
    }
}

/* About Section Styling */
.about-container {
    display: flex;
    gap: 40px;
    margin: 30px auto 0;
    max-width: 1200px;
    padding: 30px;
    border: 2px solid #76c7c0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(118, 199, 192, 0.1);
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
}

.about-text {
    color: #555;
    line-height: 1.8;
    max-width: 650px;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 16px;
    text-align: justify;
    padding-right: 20px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e6f3f2;
    text-align: center;
}

.about-highlights span {
    color: #1a3c34;
    font-size: 15px;
    position: relative;
    padding-left: 15px;
}

.about-highlights span::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #76c7c0;
    font-size: 18px;
    line-height: 1;
}

.about-image-container {
    flex: 0 0 380px;
    position: relative;
    align-self: center;
}

.owner-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 2px solid #76c7c0;
}

.owner-info {
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    text-align: center;
}

.owner-info h3 {
    color: #1a3c34;
    font-size: 18px;
    margin: 0 0 2px 0;
    font-family: 'Playfair Display', serif;
}

.owner-info p {
    color: #76c7c0;
    margin: 0;
    font-size: 14px;
}

/* Responsive adjustments for about section */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }

    .about-content {
        padding: 10px 0;
    }

    .about-image-container {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-text p {
        padding-right: 0;
        text-align: left;
    }

    .owner-image {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 15px;
        gap: 20px;
    }

    .about-text p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .about-highlights {
        gap: 10px;
        padding-top: 15px;
    }

    .about-highlights span {
        font-size: 14px;
    }

    .owner-image {
        height: 320px;
    }
}

/* Contact Section Styling */
.contact-container {
    margin: 30px auto;
    max-width: 600px;
}

.contact-info {
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info p {
    margin: 20px 0;
    font-size: 18px;
    color: #1a3c34;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info .icon {
    color: #76c7c0;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.contact-info p:hover .icon {
    transform: scale(1.2);
}

/* Responsive adjustments for contact section */
@media (max-width: 768px) {
    .contact-container {
        padding: 0 20px;
    }

    .contact-info {
        padding: 30px;
    }

    .contact-info p {
        font-size: 16px;
    }
}

/* Footer Styling */
footer {
    background-color: #1a3c34;
    color: #ffffff;
    padding: 20px;
    margin-top: 60px;
    font-size: 14px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.separator {
    color: #76c7c0;
    font-size: 16px;
}

.footer-info .icon,
.footer-info .payment-icon {
    color: #76c7c0;
    font-size: 16px;
}

/* Responsive footer adjustments */
@media (max-width: 768px) {
    .footer-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-info span {
        justify-content: center;
    }

    .separator {
        display: none !important;
    }
}

/* Update logo styles */
.logo-link {
    text-decoration: none;
    position: relative;
}

.logo-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    right: 0;
    background-color: #76c7c0;
    transition: width 0.3s ease;
}

.logo-link:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.logo-text {
    text-decoration: none;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
}

.company-name, .company-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #1a3c34;
    letter-spacing: 0.5px;
    font-weight: 600;
}

@media (max-width: 480px) {
    .logo-text {
        gap: 6px;
    }

    .company-name, .company-suffix {
        font-size: 24px;
    }
}

#quote-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

#quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 0;
}

#quote-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    margin-bottom: 0;
}

#quote-form label {
    color: #1a3c34;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 0;
}

#quote-form input,
#quote-form select,
#quote-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border: 2px solid #76c7c0;
    border-radius: 8px;
    font-size: 15px;
    color: #1a3c34;
    transition: border-color 0.3s ease;
    background: #ffffff;
}

#quote-form textarea {
    resize: vertical;
    min-height: 80px;
    max-height: 150px;
}

#quote-form .submit-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #76c7c0, #5aa9a3);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 5px;
}

.form-intro {
    text-align: center;
    margin-bottom: 10px;
}

.response-time {
    margin-top: 10px !important;
}

@media (max-width: 768px) {
    #quote-form {
        padding: 30px;
    }

    #quote-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #quote-form label {
        font-size: 15px;
    }

    #quote-form input,
    #quote-form select,
    #quote-form textarea {
        font-size: 15px;
        padding: 10px;
    }

    #quote-form .submit-button {
        padding: 14px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    #quote-form {
        padding: 20px;
    }

    #quote-form .form-group {
        gap: 6px;
    }

    #quote-form label {
        font-size: 14px;
    }

    #quote-form input,
    #quote-form select,
    #quote-form textarea {
        font-size: 14px;
        padding: 8px;
    }
}

@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        z-index: 1000;
    }

    nav a {
        display: block;
        padding: 0.8rem 1rem;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    nav a:last-child {
        border-bottom: none;
    }

    .nav-toggle:checked ~ nav {
        display: block;
    }

    .services-cards {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1.5rem;
    }

    .card {
        margin: 0;
        width: 100%;
        padding: 1.5rem;
    }

    header {
        padding: 1rem 0;
    }

    .header-container {
        padding: 0 1rem;
    }
}

/* Additional responsive adjustments */
@media screen and (max-width: 480px) {
    .card {
        padding: 1rem;
    }

    .services-cards {
        padding: 0.5rem;
    }

    section {
        padding: 2rem 1rem;
    }
}