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

:root {
    --primary-color: #2E7D32;
    --secondary-color: #4CAF50;
    --accent-color: #FF9800;
    --light-bg: #F5F7FA;
    --dark-text: #333333;
    --light-text: #666666;
    --white: #FFFFFF;
    --gray-border: #E0E0E0;
    --success-color: #28A745;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header & Navigation */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

.logo .budget {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 5px;
}

.logo .cleaning {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--secondary-color);
}

.tagline {
    font-size: 12px;
    color: var(--light-text);
    font-style: italic;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-link {
    margin: 0 15px;
    font-weight: 500;
    color: var(--dark-text);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-cta {
    margin-left: 15px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 150px 0 80px;
    position: relative;
    margin-top: 70px;
    min-height: 500px;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--light-bg), transparent);
}

/* Services Section */
.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--light-text);
    font-size: 1.1rem;
}

.services {
    padding: 50px 0;
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.service-card p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* Property Management Section */
.property-section {
    padding: 50px 0;
    background-color: var(--white);
}

.property-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
}

.property-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.property-content p {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Image Optimization Styles */
.property-image img,
.garden-image img,
.contact-showcase img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    object-fit: cover;
    max-height: 450px;
}

.property-image,
.garden-image {
    overflow: hidden;
    border-radius: 8px;
}

.contact-showcase {
    margin-top: 25px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-showcase img {
    max-height: 300px;
}

/* Value Added Services */
.value-services {
    padding: 50px 0;
    background-color: var(--light-bg);
}

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

.value-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.value-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-text);
}

/* Gallery Showcase Section */
.gallery-showcase {
    padding: 50px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--white);
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    color: var(--white);
}

/* Garden Services Section */
.garden-section {
    padding: 50px 0;
    background-color: var(--white);
}

.garden-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
}

.garden-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* About Section */
.about {
    padding: 50px 0;
    background-color: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 30px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Blog Section */
.blog {
    padding: 50px 0;
    background-color: var(--light-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.blog-cta {
    text-align: center;
    margin-top: 30px;
}

.blog-cta p {
    font-size: 1.1rem;
    color: var(--light-text);
}

/* Reviews Section */
.reviews {
    padding: 50px 0;
    background-color: var(--white);
}

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

.review-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    color: var(--dark-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--gray-border);
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.review-author-info h4 {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 3px;
}

.review-author-info p {
    font-size: 0.9rem;
    color: var(--light-text);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3,
.contact-form-cta h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-text);
}

.contact-item p {
    color: var(--light-text);
}

.contact-form-cta {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
}

.contact-form-cta p {
    color: var(--light-text);
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Contact Form Styles */
.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.date-label {
    position: absolute;
    top: -8px;
    left: 12px;
    background: var(--white);
    padding: 0 5px;
    font-size: 12px;
    color: var(--light-text);
    pointer-events: none;
}

input[type="date"] {
    color: var(--dark-text);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(0.5);
}

/* Success Message */
.success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
}

.success-message.show {
    display: block;
}

.error-message {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Footer */
.footer {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-logo .logo-text {
    margin-bottom: 10px;
}

.footer-logo .budget {
    font-size: 22px;
    color: var(--white);
}

.footer-logo .cleaning {
    font-size: 16px;
    color: var(--secondary-color);
}

.footer-logo .tagline {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-col i {
    margin-right: 8px;
    color: var(--accent-color);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        margin: 15px 0;
        font-size: 16px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .property-grid,
    .garden-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 150px 0 80px;
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .site-logo {
        height: 50px;
    }
    
    .logo .budget {
        font-size: 20px;
    }
    
    .logo .cleaning {
        font-size: 16px;
    }
    
    .tagline {
        font-size: 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }

    .property-grid,
    .garden-grid {
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item {
        aspect-ratio: 16/10;
    }
    
    .property-image img,
    .garden-image img {
        max-height: 350px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-item i {
        margin-bottom: 10px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .value-card {
        padding: 25px;
    }
    
    /* Ensure images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .site-logo {
        height: 40px;
    }
    
    .logo .budget {
        font-size: 16px;
    }

    .logo .cleaning {
        font-size: 13px;
    }
    
    .tagline {
        font-size: 9px;
    }

    .hero {
        padding: 130px 0 60px;
        min-height: 350px;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .property-content h2,
    .garden-content h2 {
        font-size: 1.5rem;
    }
    
    .property-content p,
    .garden-content p {
        font-size: 0.95rem;
    }
    
    .property-image img,
    .garden-image img {
        max-height: 300px;
    }
    
    .gallery-overlay h3 {
        font-size: 1.1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.85rem;
    }
    
    .contact-showcase img {
        max-height: 250px;
    }
    
    .feature-list li {
        font-size: 0.95rem;
    }
    
    .value-card {
        padding: 20px;
    }
    
    .value-card h3 {
        font-size: 1.1rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col ul {
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Extra small devices (phones in portrait, less than 375px) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.3rem;
    }
    
    .site-logo {
        height: 35px;
    }
    
    .logo .budget {
        font-size: 14px;
    }

    .logo .cleaning {
        font-size: 12px;
    }
    
    .tagline {
        font-size: 8px;
    }
    
    .btn {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
}

/* Service Links */
.service-link {
    color: var(--dark-text);
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-color);
}

.learn-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.learn-more:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Sunflower Icon Styles */
.spring-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sunflower-icon {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.service-icon-large .sunflower-icon {
    width: 60px;
    height: 60px;
}

/* Services Detail Page Styles */
.services-detail {
    padding: 120px 0 80px;
    background: var(--light-bg);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--light-text);
}

.service-detail-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    overflow: hidden;
    transition: var(--transition);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.service-detail-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.service-icon-large {
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.service-detail-header h2 {
    margin: 0;
    font-size: 2.2rem;
}

.service-detail-content {
    padding: 50px 40px;
}

.service-intro {
    font-size: 1.15rem;
    color: var(--dark-text);
    margin-bottom: 35px;
    line-height: 1.8;
}

.service-detail-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 40px 0 25px;
}

.service-detail-content h3:first-of-type {
    margin-top: 0;
}

.service-checklist {
    list-style: none;
    padding: 0;
    margin: 25px 0 35px;
}

.service-checklist li {
    padding: 15px 0;
    color: var(--dark-text);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-checklist li:last-child {
    border-bottom: none;
}

.service-checklist i {
    color: var(--success-color);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-benefits {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin: 35px 0;
}

.service-benefits h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.service-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-benefits ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--dark-text);
    line-height: 1.6;
}

.service-benefits ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-cta {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid var(--gray-border);
}

.services-footer-cta {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 12px;
    margin-top: 40px;
}

.services-footer-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.services-footer-cta p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Thank You Page Styles */
.thank-you-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.thank-you-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 60px 40px;
    max-width: 700px;
    text-align: center;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.checkmark-circle {
    stroke: var(--success-color);
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    stroke: var(--success-color);
    stroke-width: 3;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.thank-you-card h1 {
    color: var(--dark-text);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 40px;
    line-height: 1.8;
}

.thank-you-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 40px 0;
    text-align: left;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
    transition: var(--transition);
}

.detail-item:hover {
    background: #E8F4F8;
    transform: translateX(5px);
}

.detail-item i {
    color: var(--primary-color);
    font-size: 2rem;
    flex-shrink: 0;
}

.detail-item h3 {
    color: var(--dark-text);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.detail-item p {
    color: var(--light-text);
    font-size: 0.95rem;
}

.thank-you-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.social-follow {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--gray-border);
}

.social-follow p {
    color: var(--light-text);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 992px) {
    .service-detail-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .service-detail-header h2 {
        font-size: 1.8rem;
    }
    
    .service-detail-content {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .service-icon-large {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .thank-you-card {
        padding: 40px 25px;
    }
    
    .thank-you-card h1 {
        font-size: 2rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
    
    .thank-you-actions .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .services-detail {
        padding: 100px 0 40px;
    }
    
    .service-detail-header {
        padding: 25px 20px;
    }
    
    .service-detail-header h2 {
        font-size: 1.5rem;
    }
    
    .service-detail-content {
        padding: 25px 20px;
    }
    
    .service-intro {
        font-size: 1rem;
    }
    
    .service-checklist li {
        font-size: 0.95rem;
    }
    
    .services-footer-cta {
        padding: 40px 20px;
    }
    
    .services-footer-cta h2 {
        font-size: 1.8rem;
    }
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Smooth Hover Effects for Service Cards */
.service-card {
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

/* Enhanced Button Styles */
.btn {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn:active {
    transform: translateY(0);
}

/* Contact Form Page Specific */
.contact-page {
    padding: 120px 0 80px;
    background: var(--light-bg);
    min-height: 100vh;
}

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

.site-logo {
    max-height: 60px; /* Adjust this height to fit your navbar */
    width: auto;      /* Keeps the aspect ratio correct */
    display: block;
    margin-bottom: 5px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 140px 0 80px;
    margin-top: 70px;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.blog-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.blog-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

/* Blog Loading State */
.blog-loading {
    text-align: center;
    padding: 80px 20px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-border);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.blog-loading p {
    color: var(--light-text);
    font-size: 1.1rem;
}

/* Blog Error State */
.blog-error {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.blog-error i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.blog-error h3 {
    font-size: 1.8rem;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.blog-error p {
    color: var(--light-text);
    font-size: 1.05rem;
    line-height: 1.6;
}

.blog-error a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

/* No Posts State */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.no-posts i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.no-posts h3 {
    font-size: 1.8rem;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.no-posts p {
    color: var(--light-text);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.blog-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--light-text);
    font-size: 0.9rem;
}

.blog-card-meta time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-content h3 a {
    color: var(--dark-text);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-content h3 a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: auto;
}

.blog-card-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

.blog-card-link i {
    transition: var(--transition);
}

/* Blog Pagination */
.blog-pagination {
    text-align: center;
    margin: 40px 0;
}

#loadMoreBtn {
    padding: 14px 40px;
    font-size: 1rem;
}

/* Blog Subscribe CTA */
.blog-subscribe-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    padding: 60px 40px;
    margin: 60px 0;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.subscribe-content i {
    font-size: 3.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.subscribe-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.subscribe-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.subscribe-content .btn {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    padding: 14px 35px;
}

.subscribe-content .btn:hover {
    background: var(--light-bg);
    transform: translateY(-3px);
}

/* Blog CTA Section */
.blog-cta {
    background: var(--white);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Responsive Blog Styles */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .blog-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .blog-subscribe-cta {
        padding: 50px 30px;
    }
    
    .subscribe-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 120px 0 60px;
    }
    
    .blog-hero-content h1 {
        font-size: 1.9rem;
    }
    
    .blog-hero-content p {
        font-size: 1.05rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-card-content {
        padding: 25px;
    }
    
    .blog-card-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .blog-hero {
        padding: 100px 0 50px;
    }
    
    .blog-hero-content h1 {
        font-size: 1.6rem;
    }
    
    .blog-hero-content p {
        font-size: 1rem;
    }
    
    .blog-section {
        padding: 50px 0;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .blog-subscribe-cta {
        padding: 40px 25px;
        border-radius: 12px;
    }
    
    .subscribe-content i {
        font-size: 2.5rem;
    }
    
    .subscribe-content h2 {
        font-size: 1.6rem;
    }
    
    .subscribe-content p {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.7rem;
    }
    
    .cta-content p {
        font-size: 1.05rem;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-float i {
    margin-top: 2px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}