/* Font Face Declarations */
@font-face {
    font-family: 'Bugaki';
    src: url('fonts/Bugaki Oblique.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --primary-color: #ff66c4; /* Main pink */
    --primary-dark: #e64da8;
    --secondary-color: #333333;
    --accent-color: #ffa7dd; /* Light pink */
    --light-pink: #ffa7dd;
    --energetic-green: #coff71; /* Bright lime green */
    --white: #ffffff; /* Main white */
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: normal;
    margin: 0;
    font-family: 'Bugaki', sans-serif;
    text-shadow: 2px 2px 4px rgba(255, 102, 196, 0.3);
    letter-spacing: -0.5px;
    line-height: 1;
    text-transform: none;
}

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

.nav-list a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--secondary-color);
        transition: all 0.1s ease;
    }

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color); /* Fallback color */
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
    transform: translateZ(0) rotate(0deg);
    backface-visibility: hidden;
    image-orientation: from-image;
}

/* Responsive Hero Images */
.hero-image-desktop {
    display: block;
}

.hero-image-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero-image-desktop {
        display: none;
    }
    
    .hero-image-mobile {
        display: block;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(204, 96, 129, 0.4), rgba(255, 167, 221, 0.3), rgba(192, 255, 113, 0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 0;
    display: flex;
    justify-content: flex-start;
}

.hero-text {
    max-width: 800px;
    color: var(--white);
    margin-left: 0;
    padding-left: 4rem;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(192, 255, 113, 0.3));
    padding: 12px 20px;
    border-radius: 50px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 255, 113, 0.4);
    box-shadow: 0 4px 15px rgba(192, 255, 113, 0.3);
}

.hero-badge span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    max-width: 700px;
}

.highlight {
    color: var(--light-pink);
}

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 3.5rem;
            opacity: 0.9;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
            color: var(--white);
            max-width: 600px;
        }

.hero-cta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.services-title {
    font-family: 'Bugaki', sans-serif;
    color: var(--primary-color);
    font-size: 3.5rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(204, 96, 129, 0.2);
    letter-spacing: -1px;
    line-height: 1.1;
}

.services-description {
    color: var(--gray);
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.9;
}

.section-header h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Our Services Section */
.services-main {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

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

/* Services Section */
.services {
    padding: 6rem 0;
}

/* Homepage Services Section */
.services-main {
    padding: 6rem 0;
    background: var(--white);
}

/* Coverage Page Styles */
.coverage-hero {
    position: relative;
    padding: 8rem 0 6rem;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.coverage-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.coverage-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.coverage-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(204, 96, 129, 0.8), rgba(204, 255, 113, 0.8));
    z-index: -1;
}

.coverage-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.coverage-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.coverage-detailed {
    padding: 6rem 0;
    background: var(--white);
}

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

.map-container-large {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.coverage-info-detailed h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.coverage-description-main {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.county-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(204, 96, 129, 0.1);
    text-align: center;
    transition: var(--transition);
}

.county-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(204, 96, 129, 0.15);
    border-color: var(--primary-color);
}

.county-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--energetic-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(204, 96, 129, 0.2);
}

.county-emoji {
    font-size: 2rem;
    display: block;
    text-align: center;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.county-card h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.county-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.coverage-note-detailed {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.coverage-note-detailed h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.coverage-note-detailed ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.coverage-note-detailed li {
    color: var(--gray);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.coverage-note-detailed li:before {
    content: "✓";
    color: var(--energetic-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.coverage-cta {
    text-align: center;
    margin-top: 2rem;
}

.coverage-cta p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.coverage-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--energetic-green));
    padding: 6rem 0;
    text-align: center;
    color: var(--white);
}

.coverage-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.coverage-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive Design for Coverage Page */
@media (max-width: 768px) {
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .coverage-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .counties-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-info-detailed h2 {
        font-size: 2rem;
    }
}

/* Acceptable Items Page Styles */
.acceptable-hero {
    position: relative;
    padding: 8rem 0 6rem;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.acceptable-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.acceptable-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.acceptable-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 102, 196, 0.8), rgba(204, 255, 113, 0.8));
    z-index: -1;
}

.acceptable-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.acceptable-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.acceptable-items {
    padding: 6rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.item-category {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 102, 196, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.item-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 102, 196, 0.15);
    border-color: var(--primary-color);
}

.item-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--energetic-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 102, 196, 0.25);
    position: relative;
}

.emoji-icon {
    font-size: 3rem;
    display: block;
    text-align: center;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.item-category h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.item-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.item-list li {
    color: var(--gray);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 102, 196, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.item-list li:before {
    content: "✓";
    color: var(--energetic-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.item-list li:last-child {
    border-bottom: none;
}

.not-accepted {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 2rem;
}

.not-accepted h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.not-accepted-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.not-accepted-item i {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.not-accepted-item h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.not-accepted-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

.prohibited-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.prohibited-list li {
    color: var(--gray);
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
}

.prohibited-list li:before {
    content: "✗";
    color: #ff6b6b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.acceptable-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--energetic-green));
    padding: 6rem 0;
    text-align: center;
    color: var(--white);
}

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

.acceptable-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive Design for Acceptable Items Page */
@media (max-width: 768px) {
    .acceptable-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
    }
    
    .not-accepted-grid {
        grid-template-columns: 1fr;
    }
    
    .not-accepted h2 {
        font-size: 2rem;
    }
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, 220px) !important;
    gap: 1rem !important;
    justify-content: center !important;
    align-items: start !important;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(204, 96, 129, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(204, 96, 129, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: none;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--energetic-green);
    font-weight: 900;
    text-shadow: none;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Service Card Button */
.service-card .btn {
    margin-top: auto;
    align-self: center;
    width: 100%;
    max-width: 200px;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
}

.service-card .btn {
    margin-top: auto;
    align-self: center;
    width: 100%;
    max-width: 200px;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: var(--transition);
}

.learn-more:hover {
    gap: 1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.about-image {
    text-align: center;
    flex: 0 0 400px;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.coverage-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.coverage-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.coverage-info .coverage-cities {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.coverage-info .city {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

.coverage-info .coverage-note {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.owner-avatar {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.owner-avatar i {
    font-size: 4rem;
    color: var(--white);
}

.owner-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.about-text h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* Coverage Section */
.coverage {
    padding: 6rem 0;
}

.coverage-content {
    text-align: center;
}

.coverage-cities {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.city {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.coverage-note {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    margin: 0 auto;
}

.coverage-note p {
    margin-bottom: 1.5rem;
}

/* Booking Section */
.booking {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
}

.booking-content {
    text-align: center;
}

.booking-text h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.booking-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.booking-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-logo h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--gray);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray);
}

/* Mobile Footer Styling */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-logo {
        text-align: center;
    }
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.floating-call-btn {
    background: var(--energetic-green);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(204, 255, 113, 0.4);
    transition: var(--transition);
    font-weight: 600;
    border: 2px solid var(--energetic-green);
}

.floating-call-btn:hover {
    background: var(--energetic-green);
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(204, 255, 113, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.1s ease;
        z-index: 999;
        padding: 2rem;
        border-radius: 0 0 8px 8px;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-list li {
        text-align: center;
    }
    
    .nav-list a {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
        border-radius: 8px;
        transition: all 0.1s ease;
    }
    
    .nav-list a:hover {
        background: var(--light-pink);
        color: var(--primary-color);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        justify-content: center;
    }
    
    .hero-text {
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        flex: 0 0 auto;
    }
    
    .map-container {
        height: 250px;
    }
    
    .coverage-info .coverage-cities {
        justify-content: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .booking-options {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-call-btn span {
        display: none;
    }
    
    .floating-call-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .services-title {
        font-size: 2.5rem;
        letter-spacing: -0.5px;
    }
    
    .services-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .feature-card,
    .service-card {
        padding: 2rem;
        min-height: 350px;
    }
    
    .service-card .service-pricing .price {
        font-size: 1.5rem;
    }
    
    .coverage-cities {
        flex-direction: column;
        align-items: center;
    }
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Title - Show immediately */
.hero-title {
    opacity: 1;
}

/* Parallax Effect */
.hero-background {
    transition: transform 0.1s ease-out;
}

/* Reveal Animation */
.feature-card,
.service-card,
.about-content,
.coverage-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.feature-card.reveal,
.service-card.reveal,
.about-content.reveal,
.coverage-content.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Button Pulse Effect */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: var(--shadow-lg);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(204, 96, 129, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: var(--shadow-lg);
    }
}

.floating-call-btn.pulse {
    animation: pulse 1s ease-in-out;
}

/* Enhanced Service Card Hover */
.service-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth Button Hover Effects */
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    transform: translateY(-2px);
}

/* Feature Card Enhanced Hover */
.feature-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.2);
}

/* Social Links Enhanced Hover */
.social-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.4);
} 

/* Services Page Styles */

/* Services Hero */
.services-hero {
    position: relative;
    padding: 8rem 0 6rem;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.services-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Desktop: Show more of the image, less zoom */
@media (min-width: 769px) {
    .services-hero-image {
        object-fit: cover;
        object-position: center 20%;
    }
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(204, 96, 129, 0.7), 
        rgba(255, 167, 221, 0.6), 
        rgba(192, 255, 113, 0.3));
    z-index: 2;
}

.services-hero-content {
    position: relative;
    z-index: 3;
}

.services-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.services-hero-cta {
    margin-top: 2rem;
}

/* Services Detailed Grid */
.services-detailed {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

/* Premium Service Card Style */
.service-card-clean {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(204, 96, 129, 0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transform: translateY(0) scale(1);
}

.service-card-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--energetic-green), var(--primary-color));
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.6s ease;
    animation: gradientShift 3s ease-in-out infinite;
}

.service-card-clean::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(204, 96, 129, 0.02), rgba(204, 255, 113, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Clean solid backgrounds for cards */
.service-card-clean.dumpster-bg {
    background: var(--white);
}

.service-card-clean.junk-removal-bg {
    background: var(--white);
}

.service-card-clean.commercial-bg {
    background: var(--white);
}

.service-card-clean.demolition-bg {
    background: var(--white);
}

.service-card-clean.furniture-bg {
    background: var(--white);
}

.service-card-clean.appliances-bg {
    background: var(--white);
}

.service-card-clean:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(204, 96, 129, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: var(--primary-color);
}

.service-card-clean:hover::before {
    transform: scaleX(1);
}

.service-card-clean:hover::after {
    opacity: 1;
}

.service-icon-clean {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--energetic-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 25px rgba(204, 96, 129, 0.25),
        0 4px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-icon-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.service-icon-clean i {
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.service-card-clean:hover .service-icon-clean {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 35px rgba(204, 96, 129, 0.35),
        0 6px 15px rgba(0, 0, 0, 0.15);
}

.service-card-clean:hover .service-icon-clean::before {
    transform: scale(1);
}

.service-card-clean:hover .service-icon-clean i {
    transform: scale(1.1);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.service-card-clean:hover h3 {
    transform: scale(1.05);
    color: var(--primary-color);
}

.service-card-clean:hover p {
    transform: scale(1.02);
    color: var(--secondary-color);
}

.service-card-clean h3 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    text-shadow: none;
    background: none;
    padding: 0;
    border-radius: 0;
    display: block;
    backdrop-filter: none;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.service-card-clean p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    flex: 1;
    font-weight: 500;
    text-shadow: none;
    background: none;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.service-card-clean .btn,
.service-card-clean .btn-primary,
.service-card-clean a.btn,
.service-card-clean a.btn-primary {
    margin-top: auto;
    width: 100%;
    max-width: 220px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    background-color: #ccff71 !important;
    background: #ccff71 !important;
    color: #333333 !important;
    border: none;
    box-shadow: 
        0 6px 20px rgba(204, 255, 113, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.service-card-clean .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.service-card-clean .btn:hover,
.service-card-clean .btn-primary:hover,
.service-card-clean a.btn:hover,
.service-card-clean a.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(204, 255, 113, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: #ccff71 !important;
    background: #ccff71 !important;
    color: #333333 !important;
    filter: brightness(1.1);
}

.service-card-clean .btn:hover::before {
    left: 100%;
}

.service-detailed-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(204, 96, 129, 0.1);
}

/* Homepage specific styling for smaller cards */
.services .service-detailed-card {
    padding: 1rem !important;
    border-radius: 8px !important;
    width: 220px !important;
    height: 220px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
}

/* Ensure background images are applied to homepage cards */
.services .dumpster-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('images/dumpster rental.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.services .junk-removal-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('images/junkremoval.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.services .commercial-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('images/commercialjunkremoval.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.services .demolition-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('images/smalldemolition.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.services .furniture-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('images/furniture removal.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.services .appliances-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('images/appliancesremoval.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.services .service-icon-large {
    width: 35px;
    height: 35px;
    margin-bottom: 0.5rem;
}

.services .service-icon-large i {
    font-size: 1.5rem;
}

.services .service-detailed-header h2 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.services .service-detailed-header {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    text-align: center;
}

.services .service-description {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-align: center;
}

/* Enhanced text readability for homepage cards with background images */
.services .dumpster-bg .service-description,
.services .junk-removal-bg .service-description,
.services .commercial-bg .service-description,
.services .demolition-bg .service-description,
.services .furniture-bg .service-description,
.services .appliances-bg .service-description {
    color: var(--white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.6) !important;
    font-weight: 600 !important;
    background: rgba(0, 0, 0, 0.3) !important;
    padding: 0.75rem !important;
    border-radius: 6px !important;
    backdrop-filter: blur(2px) !important;
}

.services .dumpster-bg .service-detailed-header h2,
.services .junk-removal-bg .service-detailed-header h2,
.services .commercial-bg .service-detailed-header h2,
.services .demolition-bg .service-detailed-header h2,
.services .furniture-bg .service-detailed-header h2,
.services .appliances-bg .service-detailed-header h2 {
    color: var(--white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.6) !important;
    background: rgba(0, 0, 0, 0.4) !important;
    padding: 0.4rem 0.8rem !important;
    border-radius: 6px !important;
    display: inline-block !important;
}

.services .service-pricing {
    margin: 0.5rem 0;
}

.services .pricing-options {
    gap: 0.25rem;
    margin: 0.5rem 0;
    flex-wrap: wrap;
}

.services .pricing-option {
    padding: 0.25rem 0.5rem;
    min-width: 80px;
    flex: 1;
}

.services .pricing-option .price {
    font-size: 1rem;
    font-weight: 600;
}

.services .pricing-option p {
    font-size: 0.7rem;
    margin: 0.1rem 0;
}

.services .additional-info p {
    font-size: 0.7rem;
    margin: 0.1rem 0;
}

.services .service-detailed-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
    overflow: hidden;
}

.services .btn {
    margin-top: auto;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-detailed-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(192, 255, 113, 0.2);
    border-color: var(--energetic-green);
}

.service-detailed-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--energetic-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(192, 255, 113, 0.3);
}

.service-icon-large i {
    font-size: 3.5rem;
    color: var(--energetic-green);
    font-weight: 900;
    text-shadow: none;
}

.service-detailed-header h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(255, 255, 255, 0.7);
    font-weight: 700;
}

.junk-removal-bg .service-detailed-header h2 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}

.dumpster-bg .service-detailed-header h2 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}

.commercial-bg .service-detailed-header h2 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}

.furniture-bg .service-detailed-header h2 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}

.appliances-bg .service-detailed-header h2 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}

.demolition-bg .service-detailed-header h2 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}

.service-detailed-content {
    text-align: left;
}

.service-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* White text for service descriptions with background images */
.junk-removal-bg .service-description {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.6);
    font-weight: 600;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

.dumpster-bg .service-description {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.6);
    font-weight: 600;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

.commercial-bg .service-description {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.6);
    font-weight: 600;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

.furniture-bg .service-description {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.6);
    font-weight: 600;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

.appliances-bg .service-description {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.6);
    font-weight: 600;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

.demolition-bg .service-description {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.6);
    font-weight: 600;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

.service-features {
    margin-bottom: 2rem;
}

.service-features h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: var(--secondary-color);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-pricing {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
}

.service-pricing h3 {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-pricing p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.pricing-options {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.pricing-option {
    flex: 1;
    min-width: 150px;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid rgba(204, 96, 129, 0.1);
}

.pricing-option .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-option p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
}

.pricing-option small {
    color: var(--gray);
    font-size: 0.8rem;
    opacity: 0.8;
}

.additional-info {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(204, 96, 129, 0.1);
}

.additional-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0.5rem 0;
    text-align: left;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: var(--white);
}

.how-it-works .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.how-it-works .section-header h2 {
    color: var(--secondary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.how-it-works .section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.step-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(255, 102, 196, 0.3);
}

.step-icon {
    margin: 1.5rem 0 1rem;
}

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

.step-card h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for How It Works */
@media (max-width: 768px) {
    .how-it-works .section-header h2 {
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 2rem 1.5rem;
    }
    
    .step-icon i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .how-it-works .section-header h2 {
        font-size: 2rem;
    }
    
    .step-card {
        padding: 1.5rem 1rem;
    }
}

/* Payment Methods Section */
.payment-methods {
    padding: 4rem 0;
    background: var(--light-gray);
}

.payment-methods .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.payment-methods .section-header h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.payment-methods .section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
}

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

.payment-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 3px 10px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.12),
        0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.payment-icon {
    margin-bottom: 1rem;
}

.payment-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.payment-card h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.payment-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Responsive for Payment Methods */
@media (max-width: 768px) {
    .payment-methods .section-header h2 {
        font-size: 2rem;
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .payment-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .payment-methods .section-header h2 {
        font-size: 1.8rem;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .payment-card {
        padding: 1.25rem 1rem;
    }
    
    .payment-icon i {
        font-size: 2rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    padding: 8rem 0 6rem;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.contact-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 102, 196, 0.8), rgba(204, 255, 113, 0.8));
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-hero-cta {
    margin-top: 2rem;
}

/* Contact Information Section */
.contact-info-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.contact-details h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-content h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-content p {
    margin-bottom: 0.5rem;
}

.contact-content p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

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

.contact-note {
    color: var(--gray);
    font-size: 0.9rem;
    font-style: italic;
}

/* Coverage Map */
.coverage-map h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.map-container {
    margin-bottom: 2rem;
}

.coverage-details h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.coverage-details ul {
    list-style: none;
    padding: 0;
}

.coverage-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    color: var(--gray);
}

.coverage-details li:last-child {
    border-bottom: none;
}

.coverage-details strong {
    color: var(--secondary-color);
}

/* Social Media Section */
.social-media-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.social-media-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.social-media-section .section-header h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.social-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.phone {
    background: var(--primary-color);
}

.social-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.social-card p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.contact-form {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

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

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

/* Contact CTA */
.contact-cta {
    padding: 6rem 0;
    background: var(--light-gray);
    text-align: center;
}

.contact-cta .cta-content h2 {
    color: var(--secondary-color);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-cta .cta-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 6rem 0 4rem;
    }
    
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Commercial Services Page Styles */
.commercial-hero {
    position: relative;
    padding: 8rem 0 6rem;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.commercial-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.commercial-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.commercial-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 102, 196, 0.8), rgba(204, 255, 113, 0.8));
}

.commercial-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.commercial-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.commercial-hero-cta {
    margin-top: 2rem;
}

/* Commercial Overview Section */
.commercial-overview {
    padding: 6rem 0;
    background: var(--white);
}

.commercial-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Commercial Process Section */
.commercial-process {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.process-step h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin: 1rem 0 1rem 0;
}

.process-step p {
    color: var(--gray);
    line-height: 1.6;
}

/* Commercial Benefits Section */
.commercial-benefits {
    padding: 6rem 0;
    background: var(--white);
}

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

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--energetic-green);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-item h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Commercial CTA */
.commercial-cta {
    padding: 6rem 0;
    background: var(--light-gray);
    text-align: center;
}

.commercial-cta .cta-content h2 {
    color: var(--secondary-color);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.commercial-cta .cta-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive for Commercial Services */
@media (max-width: 768px) {
    .commercial-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .commercial-features,
    .process-steps,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .commercial-cta .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .commercial-hero {
        padding: 6rem 0 4rem;
    }
    
    .commercial-hero-content h1 {
        font-size: 2rem;
    }
    
    .feature-card,
    .process-step {
        padding: 1.5rem;
    }
}

/* Services CTA */
.services-cta {
    padding: 6rem 0;
    background: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--secondary-color);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Active Navigation Link */
.nav-list a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobile Responsive for Services Page */
@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-hero-content p {
        font-size: 1.1rem;
    }
    
    .services-grid-detailed {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detailed-card {
        padding: 2rem;
    }
    
    .pricing-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pricing-option {
        min-width: auto;
    }
    
    .service-detailed-header h2 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 6rem 0 4rem;
    }
    
    .services-hero-image {
        object-position: center;
    }
    
    .services-hero-content h1 {
        font-size: 2rem;
    }
    
    .service-detailed-card {
        padding: 1.5rem;
    }
    
    .service-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-large i {
        font-size: 1.5rem;
    }
} 

/* Enhanced Background Effects */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(192, 255, 113, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(192, 255, 113, 0.6);
    }
}

/* Enhanced Hero Section */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(204, 96, 129, 0.4), rgba(255, 167, 221, 0.3), rgba(192, 255, 113, 0.2));
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

/* Enhanced Service Cards */
.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 255, 113, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: var(--energetic-green);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(192, 255, 113, 0.2);
    animation: glowPulse 2s ease-in-out infinite;
}

/* Enhanced Service Icons */
.service-icon {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: none;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Enhanced Floating Call Button */
.floating-call-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px var(--primary-color);
    transition: var(--transition);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.floating-call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.floating-call-btn:hover::before {
    left: 100%;
}

.floating-call-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 12px 35px var(--primary-dark);
    filter: brightness(1.1);
}

/* Enhanced Hero Badge */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(192, 255, 113, 0.3));
    padding: 12px 20px;
    border-radius: 50px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 255, 113, 0.4);
    box-shadow: 0 4px 15px rgba(192, 255, 113, 0.3);
    animation: glowPulse 3s ease-in-out infinite;
}

/* Enhanced Services Hero - Image Background */
.services-hero {
    position: relative;
    padding: 8rem 0 6rem;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

/* Enhanced Service Detailed Cards */
.service-detailed-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(204, 96, 129, 0.1);
    position: relative;
    overflow: hidden;
}

/* Service Card Background Images */
.dumpster-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('images/dumpster-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.junk-removal-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('images/junkremoval.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dumpster-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('images/dumpster rental.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.commercial-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('images/commercialjunkremoval.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.furniture-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('images/furniture removal.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.appliances-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('images/appliancesremoval.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.demolition-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('images/smalldemolition.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(204, 96, 129, 0.05), rgba(255, 167, 221, 0.05));
    z-index: 1;
    pointer-events: none;
}

.service-detailed-header,
.service-detailed-content {
    position: relative;
    z-index: 2;
}

.service-detailed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--energetic-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-detailed-card:hover::before {
    transform: scaleX(1);
}

.service-detailed-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(192, 255, 113, 0.2);
    border-color: var(--energetic-green);
}

/* Enhanced Service Icon Large */
.service-icon-large {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: none;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.service-detailed-card:hover .service-icon-large {
    transform: scale(1.1);
    filter: brightness(1.2);
} 

/* Ensure Icons are Always Visible */
.service-icon i,
.service-icon-large i {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Fallback Icons in case Font Awesome doesn't load */
.service-icon i.fa-dumpster::before { content: "🗑️"; }
.service-icon i.fa-dumpster-fire::before { content: "🗑️"; }
.service-icon i.fa-trash-alt::before { content: "🗑️"; }
.service-icon i.fa-building::before { content: "🏢"; }
.service-icon i.fa-hammer::before { content: "🔨"; }
.service-icon i.fa-couch::before { content: "🛋️"; }
.service-icon i.fa-tv::before { content: "📺"; }
.service-icon i.fa-boxes::before { content: "📦"; }

.service-icon-large i.fa-dumpster::before { content: "🗑️"; }
.service-icon-large i.fa-dumpster-fire::before { content: "🗑️"; }
.service-icon-large i.fa-trash-alt::before { content: "🗑️"; }
.service-icon-large i.fa-building::before { content: "🏢"; }
.service-icon-large i.fa-hammer::before { content: "🔨"; }
.service-icon-large i.fa-couch::before { content: "🛋️"; }
.service-icon-large i.fa-tv::before { content: "📺"; }
.service-icon-large i.fa-boxes::before { content: "📦"; }

/* Enhanced Icon Visibility */
.service-icon,
.service-icon-large {
    background: none !important;
    border: none;
}

.service-icon:hover,
.service-icon-large:hover {
    background: none !important;
    transform: scale(1.1);
    filter: brightness(1.2);
} 