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


body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
}

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

/* Header */
header {
    background-color: rgba(10, 10, 10, 0.98);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 40px;
    z-index: 1000;
    border-bottom: 1px solid #333;
    backdrop-filter: blur(15px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-content nav {
    margin-left: auto;
}


@media (max-width: 768px) {
    .header-content {
        justify-content: space-between;
    }
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Desktop Navigation - Always visible on desktop */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.nav-menu a:hover {
    color: #00d4aa;
    text-shadow: 0 1px 3px rgba(0, 212, 170, 0.4);
}

/* Desktop CTA Button - Hidden on desktop */
.header-content .cta-button {
    display: none;
}

.cta-button {
    background-color: #00d4aa;
    color: #121212;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 0 15px rgba(0, 212, 170, 0.2);
}

.cta-button:hover {
    background-color: #00d4aa;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.4);
}

/* Mobile Responsive Design */
.mobile-menu-toggle {
    display: none;
    /* Hidden on desktop, shown on mobile */
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.mobile-cta {
    display: none;
    /* Hidden on desktop, shown in mobile menu */
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid #333;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
        animation: slideDown 0.3s ease-out;
    }

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

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-menu a {
        padding: 12px 16px;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block;
    }

    .nav-menu a:hover {
        background-color: rgba(0, 212, 170, 0.1);
        color: #00d4aa;
        transform: translateX(5px);
    }

    .nav-menu .mobile-cta {
        display: block;
        margin-top: 20px;
        text-align: center;
    }

    .nav-menu .mobile-cta .cta-button {
        width: 100%;
        justify-content: center;
    }

    .header-content .cta-button {
        display: none;
    }

    /* Mobile Hero Section Improvements */
    .hero {
        padding: 80px 0 80px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .hero-tagline {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        margin-bottom: 20px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 20px;
    }

    .about-content {
        padding: 20px;
    }

    .service-card:hover {
        transform: none;
        box-shadow: 0 0 15px rgba(0, 212, 170, 0.1);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 130px 0 80px;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.4;
        margin-bottom: 18px;
    }

    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 22px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .container {
        padding: 0 15px;
    }

    .service-card {
        padding: 20px;
    }

    .card {
        padding: 20px;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-features {
        gap: 10px;
    }

    .feature-item {
        padding: 15px;
    }

    .cta-button {
        padding: 14px 20px;
        font-size: 1rem;
    }

    .about-content {
        padding: 15px;
    }

    .contact-info {
        padding: 15px;
    }
}

/* Hero Section */
.hero {
    margin-top: 0;
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #f8f9fa;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-tagline {
    font-size: 1.8rem;
    color: #00d4aa;
    font-weight: 600;
    margin-bottom: 30px;
    font-style: italic;
    text-shadow: 0 0 15px rgba(0, 212, 170, 0.5);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4aa;
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.6);
}

.stat-label {
    color: #e9ecef;
    font-size: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: #00d4aa;
}

.feature-item i {
    color: #00d4aa;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.4);
}

.feature-item div {
    color: #f8f9fa;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    margin-top: 40px;
}

.hero-cta .cta-button {
    font-size: 1.2rem;
    padding: 16px 32px;
    background-color: #00d4aa;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
}

/* Main Content */
.main-content {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.section {
    margin-bottom: 100px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #f8f9fa;
    text-align: center;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

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

.card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.card p {
    color: #f8f9fa;
    margin-bottom: 20px;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.card-icon {
    font-size: 2rem;
    color: #00d4aa;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.4);
}

/* Reviews Section */
.reviews {
    background-color: #1a1a1a;
    padding: 80px 0;
    margin: 0px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

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

/* Additional Review Card Layout Improvements */
.review-card {
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 2px solid #333;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    box-sizing: border-box;
}

.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4aa, #00b894, #00d4aa);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.review-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: #00d4aa;
    box-shadow: 0 16px 32px rgba(0, 212, 170, 0.15),
        0 6px 24px rgba(0, 0, 0, 0.4);
}

.review-card:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

/* Ensure proper spacing and alignment */
.review-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    flex-shrink: 0;
    width: 100%;
}

.reviewer-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    min-height: 50px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 184, 148, 0.1));
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.reviewer-avatar i {
    font-size: 1.5rem;
    color: #00d4aa;
    text-shadow: 0 0 8px rgba(0, 212, 170, 0.4);
}

/* Ensure rating section is properly positioned */
.review-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: 100%;
    padding-left: 65px;
    /* Align with the reviewer details (avatar width + gap) */
    margin-top: 5px;
    flex-shrink: 0;
    position: relative;
}

/* Handle very long names better */
.reviewer-name {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 1.4em;
}

.reviewer-service {
    color: #00d4aa;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
    text-shadow: 0 0 6px rgba(0, 212, 170, 0.4);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 1.2em;
}

.reviewer-location {
    color: #adb5bd;
    font-size: 0.8rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 1.1em;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Ensure content doesn't overflow */
.reviewer-details {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    max-width: calc(100% - 65px);
    /* Account for avatar width + gap */
}

.review-comment {
    color: #f8f9fa;
    line-height: 1.6;
    font-size: 0.95rem;
    font-style: italic;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Review Footer */
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.review-date {
    color: #adb5bd;
    font-size: 0.8rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.review-status {
    color: #00d4aa;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(0, 212, 170, 0.2);
    text-shadow: 0 0 6px rgba(0, 212, 170, 0.3);
}

/* Review Card Animations */
.review-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.review-card:nth-child(1) {
    animation-delay: 0.1s;
}

.review-card:nth-child(2) {
    animation-delay: 0.2s;
}

.review-card:nth-child(3) {
    animation-delay: 0.3s;
}

.review-card:nth-child(4) {
    animation-delay: 0.4s;
}

.review-card:nth-child(5) {
    animation-delay: 0.5s;
}

.review-card:nth-child(6) {
    animation-delay: 0.6s;
}

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

/* Enhanced Review Card Hover Effects */
.review-card:hover .reviewer-avatar {
    transform: scale(1.1);
    border-color: rgba(0, 212, 170, 0.6);
}

.review-card:hover .stars i {
    animation: starTwinkle 0.6s ease-in-out;
}

@keyframes starTwinkle {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Responsive Design for Reviews */
@media (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 20px;
        min-height: 250px;
    }

    .review-header {
        gap: 12px;
    }

    .review-rating {
        padding-left: 0;
        align-items: flex-start;
        margin-top: 5px;
    }

    .reviewer-info {
        width: 100%;
    }

    .reviewer-name {
        font-size: 1rem;
    }

    .review-comment {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 18px;
        min-height: 240px;
    }

    .reviewer-avatar {
        width: 45px;
        height: 45px;
    }

    .reviewer-avatar i {
        font-size: 1.3rem;
    }

    .reviewer-name {
        font-size: 0.95rem;
    }

    .reviewer-service {
        font-size: 0.85rem;
    }

    .reviewer-location {
        font-size: 0.75rem;
    }

    .review-comment {
        font-size: 0.85rem;
    }

    .review-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* About Section */
.about-content {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-content h3 {
    color: #00d4aa;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.4);
    font-size: 1.3rem;
}

.about-content p {
    color: #f8f9fa;
    margin-bottom: 15px;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.about-content ul {
    color: #f8f9fa;
    padding-left: 20px;
    margin: 20px 0;
}

.about-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Contact Section - Enhanced Design */
.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.contact-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #1f1f1f 100%);
    border: 2px solid #333;
    border-radius: 16px;
    padding: 30px 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 200px;
    user-select: none;
}

.contact-card::after {
    content: "Click to open";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contact-card:hover::after {
    opacity: 1;
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4aa, #00b894, #00d4aa);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #00d4aa;
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.4);
}

.contact-card:active {
    transform: translateY(-4px) scale(1.02);
    transition: all 0.1s ease;
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 184, 148, 0.1));
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 184, 148, 0.2));
    border-color: rgba(0, 212, 170, 0.6);
    transform: scale(1.1);
}

.contact-card-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon::before {
    width: 100px;
    height: 100px;
}

.contact-card-icon i {
    font-size: 2rem;
    color: #00d4aa;
    z-index: 2;
    position: relative;
    text-shadow: 0 0 15px rgba(0, 212, 170, 0.6);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon i {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.8);
}

.contact-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.contact-card-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

.contact-card:hover .contact-card-content h3 {
    color: #00d4aa;
}

.contact-link {
    color: #f8f9fa;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 184, 148, 0.1));
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.contact-link:hover {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 184, 148, 0.2));
    border-color: rgba(0, 212, 170, 0.6);
    color: #00d4aa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.2);
}

.contact-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.contact-link:hover i {
    transform: translateX(3px);
}

.contact-text {
    color: #f8f9fa;
    font-weight: 500;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(0, 184, 148, 0.05) 100%);
    border: 2px solid rgba(0, 212, 170, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 212, 170, 0.1);
}

.contact-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4aa, #00b894, #00d4aa);
}

.contact-cta::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.contact-cta h3 {
    color: #00d4aa;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0, 212, 170, 0.4);
}

.contact-cta p {
    color: #f8f9fa;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.contact-cta-btn {
    background: linear-gradient(135deg, #00d4aa, #00b894);
    color: #121212;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-cta-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 ease;
}

.contact-cta-btn:hover::before {
    left: 100%;
}

.contact-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 212, 170, 0.4);
    background: linear-gradient(135deg, #00b894, #00d4aa);
}

.contact-cta-btn i {
    transition: transform 0.3s ease;
}

.contact-cta-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Contact Section */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 25px 20px;
        min-height: 180px;
    }

    .contact-card-icon {
        width: 70px;
        height: 70px;
    }

    .contact-card-icon i {
        font-size: 1.8rem;
    }

    .contact-cta {
        padding: 30px 25px;
    }

    .contact-cta h3 {
        font-size: 1.5rem;
    }

    .contact-cta p {
        font-size: 1rem;
    }

    .contact-cta-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 20px 15px;
        min-height: 160px;
    }

    .contact-card-icon {
        width: 60px;
        height: 60px;
    }

    .contact-card-icon i {
        font-size: 1.5rem;
    }

    .contact-card-content h3 {
        font-size: 1.1rem;
    }

    .contact-link {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .contact-cta {
        padding: 25px 20px;
    }

    .contact-cta h3 {
        font-size: 1.3rem;
    }

    .contact-cta p {
        font-size: 0.95rem;
    }

    .contact-cta-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-content {
    color: #f8f9fa;
}

.footer-content p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Digit Animation Styles */
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4aa;
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.6);
    transition: all 0.3s ease;
}

.stat-number.animate {
    animation: numberPulse 0.5s ease-out;
}

@keyframes numberPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Neon Effects */
.neon-glow {
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    0% {
        box-shadow: 0 0 15px rgba(0, 212, 170, 0.2);
    }

    100% {
        box-shadow: 0 0 25px rgba(0, 212, 170, 0.4);
    }
}

/* Charity Ribbon Styles */
.charity-ribbon {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(135deg, #21a9a7, #d4855e, #2c2b39, #d4855e, #21a9a7);
    background-size: 300% 300%;
    animation: ribbonGradient 4s ease infinite, ribbonBlink 3s ease-in-out infinite;
    box-shadow:
        0 0 30px rgba(33, 169, 167, 0.8),
        0 0 60px rgba(212, 133, 94, 0.6),
        0 0 90px rgba(44, 43, 57, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    overflow: hidden;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.charity-ribbon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(33, 169, 167, 0.2) 50%,
            transparent 100%);
    animation: shimmer 2s ease-in-out infinite;
    pointer-events: none;
}

.ribbon-content {
    padding: 8px 20px;
    text-align: center;
    position: relative;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.ribbon-text {
    color: #ffffff;
    font-weight: 800;
    font-size: 0.9rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block;
    letter-spacing: 0.6px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}



/* Hover effects for enhanced interactivity */
.charity-ribbon:hover .ribbon-text {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Ribbon Animations */
@keyframes ribbonGradient {
    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 100% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    75% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes ribbonBlink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.95;
        transform: scale(1.02);
    }
}





@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Adjust header position to account for ribbon */
header {
    top: 0;
}

/* Adjust hero section padding to account for ribbon */
.hero {
    padding: 170px 0 80px;
}

/* Responsive adjustments for ribbon */
@media (max-width: 768px) {
    .ribbon-text {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .ribbon-content {
        padding: 6px 16px;
    }

    header {
        top: 28px;
    }

    .hero {
        padding: 120px 0 80px;
    }
}

@media (max-width: 480px) {
    .ribbon-text {
        font-size: 0.75rem;
        letter-spacing: 0.4px;
    }

    .ribbon-content {
        padding: 5px 14px;
    }

    header {
        top: 26px;
    }

    .hero {
        padding: 170px 0 80px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #121212;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    border: none;
    border-radius: 50%;
    color: #121212;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
    background: linear-gradient(135deg, #00b894, #00d4aa);
}

.back-to-top:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* Responsive Back to Top Button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Services Grid - New Enhanced Design */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #1f1f1f 100%);
    border: 2px solid #333;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    user-select: none;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4aa, #00b894, #00d4aa);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: #00d4aa;
    box-shadow: 0 16px 32px rgba(0, 212, 170, 0.15),
        0 6px 24px rgba(0, 0, 0, 0.4);
}

.service-card:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

/* Service Header */
.service-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
    position: relative;
    flex-shrink: 0;
}

.service-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 6px rgba(0, 212, 170, 0.3));
}

/* Service Content */
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    line-height: 1.3;
    flex-shrink: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.service-description {
    color: #f8f9fa;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.9rem;
    flex-shrink: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Service Details */
.service-details {
    margin-bottom: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateX(3px);
}

.detail-item i {
    color: #00d4aa;
    margin-right: 10px;
    font-size: 0.8rem;
    width: 14px;
    text-align: center;
    text-shadow: 0 0 6px rgba(0, 212, 170, 0.4);
}

.detail-item span {
    color: #f8f9fa;
    font-size: 0.85rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Service Pricing */
.service-pricing {
    text-align: center;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(0, 212, 170, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 170, 0.1);
    flex-shrink: 0;
    margin-top: auto;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

/* Service Booking Button */
.service-booking {
    text-align: center;
    margin-top: auto;
    padding-top: 15px;
}

.service-cta {
    width: 100%;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    border: none;
    border-radius: 6px;
    color: #121212;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 3px 12px rgba(0, 212, 170, 0.3);
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(0, 212, 170, 0.4);
    background: linear-gradient(135deg, #00b894, #00d4aa);
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #00d4aa;
    margin-bottom: 3px;
    text-shadow: 0 0 12px rgba(0, 212, 170, 0.4);
}

.price-note {
    color: #adb5bd;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Enhanced Hover Effects */
.service-card:hover .service-icon {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design for Services */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 20px;
        min-height: 250px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .price {
        font-size: 1.6rem;
    }

    .service-cta {
        padding: 12px 18px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 18px;
    }

    .service-card {
        padding: 18px;
        min-height: 240px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .service-icon {
        font-size: 1.8rem;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .price {
        font-size: 1.5rem;
    }
}


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

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #333;
    border-radius: 8px;
    background-color: #0a0a0a;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #00d4aa;
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
    background-color: #0f0f0f;
}

.form-group input::placeholder {
    color: #666;
}

.form-group input.error {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.error-message {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 6px;
    display: block;
    min-height: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-secondary {
    flex: 1;
    padding: 14px 20px;
    background-color: transparent;
    border: 2px solid #333;
    color: #ffffff;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-secondary:hover {
    border-color: #00d4aa;
    color: #00d4aa;
    background-color: rgba(0, 212, 170, 0.05);
    transform: translateY(-2px);
}

.btn-primary {
    flex: 2;
    padding: 14px 20px;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    border: none;
    color: #121212;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 212, 170, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #00d4aa66;
    background: linear-gradient(135deg, #00b894, #00d4aa);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}


/* Modal Animation Keyframes */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes modalSlideOut {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    to {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
}

/* Responsive Modal Design */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
        max-height: calc(100vh - 40px);
        /* Adjust for mobile */
    }

    .modal.show {
        padding: 10px 0;
        /* Reduce padding on mobile */
    }

    .modal-header {
        padding: 20px 25px 15px;
        position: sticky;
        top: 0;
    }

    .modal-header h3 {
        font-size: 1.3rem;
    }

    .booking-form {
        padding: 25px;
        max-height: calc(100vh - 180px);
        /* Adjust for mobile */
    }

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

    .btn-secondary,
    .btn-primary {
        width: 100%;
        padding: 16px 20px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 10px;
        max-height: calc(100vh - 20px);
        /* Adjust for small mobile */
    }

    .modal.show {
        padding: 5px 0;
        /* Minimal padding on small mobile */
    }

    .modal-header {
        padding: 18px 20px 12px;
        position: sticky;
        top: 0;
    }

    .modal-header h3 {
        font-size: 1.2rem;
    }

    .booking-form {
        padding: 20px;
        max-height: calc(100vh - 160px);
        /* Adjust for small mobile */
    }

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

    .form-group input {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .form-actions {
        margin-top: 25px;
    }
}

/* Service Summary Styles */
.service-summary {
    background: linear-gradient(145deg, rgba(0, 212, 170, 0.05) 0%, rgba(0, 184, 148, 0.05) 100%);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 16px rgba(0, 212, 170, 0.1);
}


.summary-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #00d4aa;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-header i {
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(0, 212, 170, 0.4);
}

.change-service-btn {
    margin-left: auto;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    color: #00d4aa;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.change-service-btn:hover {
    background: rgba(0, 212, 170, 0.2);
    border-color: rgba(0, 212, 170, 0.5);
    transform: translateY(-1px);
}

.change-service-btn i {
    font-size: 0.8rem;
}

.summary-content h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.summary-content p {
    color: #f8f9fa;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.summary-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-price span:first-child {
    color: #00d4aa;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.4);
}

.summary-price span:last-child {
    color: #adb5bd;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

/* No Service Selected Warning Styles */
.no-service-warning {
    background: linear-gradient(145deg, rgba(255, 107, 107, 0.05) 0%, rgba(255, 87, 87, 0.05) 100%);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.1);
    display: none;
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #ff6b6b;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.warning-header i {
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(255, 107, 107, 0.4);
}

.no-service-warning p {
    color: #f8f9fa;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Stars and Rating */
.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    font-size: 0.9rem;
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.4);
}

.stars .fas.fa-star {
    color: #ffd700;
}

.stars .far.fa-star {
    color: #666;
}

.rating-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Review Images Indicator */
.review-images-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
    align-self: flex-start;
}

.review-images-indicator:hover {
    background: rgba(0, 212, 170, 0.2);
    border-color: rgba(0, 212, 170, 0.4);
    transform: translateY(-1px);
}

.review-images-indicator i {
    color: #00d4aa;
    font-size: 0.8rem;
}

.image-count {
    color: #00d4aa;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(0, 212, 170, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    min-width: 16px;
    text-align: center;
}

/* Review Content */
.review-content {
    flex-grow: 1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 60px;
    /* Ensure minimum height for content */
}


@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Responsive Design for Page Header */
@media (max-width: 992px) {
    .header-content {
        gap: 30px;
        text-align: center;
    }

    .header-left {
        flex-direction: column;
        gap: 20px;
    }

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

    .header-stats {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 50px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .header-stats {
        flex-direction: column;
        gap: 15px;
    }

    .header-stats .stat-item {
        padding: 12px 16px;
    }

    .back-button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .quote-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .quote-card {
        padding: 20px;
        min-height: 120px;
    }

    .quote-icon {
        width: 50px;
        height: 50px;
    }

    .quote-icon i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 90px 0 40px;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .back-button {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .header-stats .stat-item {
        padding: 10px 14px;
    }

    .header-stats .stat-number {
        font-size: 1.5rem;
    }

    .header-stats .stat-label {
        font-size: 0.8rem;
    }

    .quote-card {
        padding: 18px;
        min-height: 110px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .quote-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto;
    }

    .quote-icon i {
        font-size: 1.2rem;
    }

    .quote-content h4 {
        font-size: 1rem;
    }

    .quote-content p {
        font-size: 0.85rem;
    }
}
