/* CSS Variables */
:root {
    --primary-color: #8BE0B9;
    --primary-dark: #6BC49A;
    --secondary-color: #2C3E50;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --border-color: #E9ECEF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
        overflow-x: hidden;
}
body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Buttons */
.block-button{
    display:block;
}
.btn {
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-weight: 500;
    font-family: var(--font-family);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

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

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

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

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

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

.logo-container img {
    height: 50px;
    width: auto;
}

.navigation ul.navbar {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.navigation ul.navbar li a {
    color: var(--text-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.navigation ul.navbar li a:hover,
.navigation ul.navbar li a.active {
    color: var(--primary-color);
}

.navigation ul.navbar li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navigation ul.navbar li a:hover::after,
.navigation ul.navbar li a.active::after {
    width: 100%;
}

.right-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.right-box .links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
}

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

/* Mobile Header */
#header-mobile {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
    max-width: 100vw;
    /* overflow: hidden; */
}

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

.mobile-menu-toggle button {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 1rem;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-navbar {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-navbar li {
    margin-bottom: 1rem;
}

.mobile-navbar li a {
    color: var(--text-dark);
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-contact {
    margin-top: 2rem;
    text-align: center;
}

.phone-link {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Section Styles */
#hero .box{
    top: -80px;
    position: absolute;
    left: 50%;
    right: 0;
    bottom: 0;
    background: linear-gradient(163.85deg, #8AE0B8 9.36%, rgba(130, 225, 187, .715) 51.6%, rgba(193, 223, 150, .43) 93.83%);
    border-radius: 74px 0 74px 74px;
    z-index: -1;
}
section {
    padding: 80px 0 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    /* padding: 0 !important; */
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
}

.hero-content {
    padding-right: 2rem;
}

.hero-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* Why Choose Us Section */
.why-choose-us-section {
    background-color: var(--light-bg);
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

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

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

.feature-card:hover .feature-icon {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.feature-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background-color: var(--white);
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

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

.service-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

/* FAQ Section */
.faq-section {
    background-color: var(--white);
    padding: 80px 0;
}

.faq-content {
    padding-right: 2rem;
}

.faq-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--light-bg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: var(--light-bg);
    border-top: 1px solid var(--border-color);
}

.faq-answer.active {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item.active .faq-question i,
.faq-question i.rotated {
    transform: rotate(180deg);
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-image-container {
  
    width: 100%;
    padding: 2rem;
}
.faq-image-box{
    width: 533px;
    height: 459px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    background: linear-gradient(90deg, #8BE0B9 0%, rgba(179, 237, 173, .44) 100%);
    border-radius: 57px 0 0 57px;
}
.faq-image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

/* Responsive FAQ Section */
@media (max-width: 991.98px) {
    .faq-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .faq-content .section-title {
        text-align: center;
        font-size: 2rem;
    }
    
    .faq-image-container {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .faq-content .section-title {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-image-container {
        padding: 1.5rem;
    }
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
}

.contact-info {
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    height: 100%;
}

.contact-info h4 {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

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

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 224, 185, 0.25);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

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

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

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-brand p {
    color: #BDC3C7;
    margin-top: 1rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: #BDC3C7;
    transition: var(--transition);
}

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

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #BDC3C7;
}

.footer-contact i {
    color: var(--primary-color);
    min-width: 16px;
}

.footer-contact a {
    color: #BDC3C7;
}

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

.footer-social {
    margin-top: 1rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #4A5568;
    color: #BDC3C7;
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.call-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 224, 185, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(139, 224, 185, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(139, 224, 185, 0);
    }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding-right: 1rem;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 80px;
    }
    
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    section {
        padding: 60px 0 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-card,
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-info,
    .contact-form {
        margin-bottom: 2rem;
    }
    
    .floating-call-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .call-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .accordion-button,
    .accordion-body {
        padding: 1rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Animation Enhancements */
/* .aos-init[data-aos] {
    pointer-events: none;
} */

.aos-animate {
    pointer-events: auto;
}

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

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

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

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

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

/* Header Scroll Effect */
#nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Additional Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .floating-call-btn,
    #nav,
    .footer {
        display: none !important;
    }
    
    body {
        padding-top: 0 !important;
    }
    
    .hero-section {
        padding: 20px 0 !important;
        min-height: auto !important;
    }
    
    section {
        padding: 20px 0 !important;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.reviews-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-carousel-wrapper {
    overflow: hidden;
    position: relative;
    padding: 0 50px;
}

.reviews-carousel {
    display: flex;
    transition: all 0.3s ease-in-out;
    gap: 1.5rem;
    justify-content: center;
}

.review-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    flex: 0 0 calc(33.333% - 1rem); /* Show 3 items on desktop, accounting for gaps */
    min-width: 280px;
    max-width: 350px;
}

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

.review-item .stars {
    margin-bottom: 1rem;
    text-align: center;
}

.review-item .stars i {
    color: #FFD700;
    font-size: 1.2rem;
    margin: 0 2px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.review-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.review-nav-btn {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
}

.review-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.review-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.review-nav-btn:disabled:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: none;
}

/* Tablet Styles */
@media (max-width: 991.98px) {
    .reviews-carousel-wrapper {
        padding: 0 40px;
    }
    
    .reviews-carousel {
        gap: 1rem;
    }
    
    .review-item {
        padding: 1.5rem;
        flex: 0 0 calc(50% - 0.5rem); /* Show 2 items on tablet */
        min-width: 250px;
        max-width: none;
    }
    
    .review-text {
        min-height: 100px;
        font-size: 0.95rem;
    }
    
    .reviewer-name {
        font-size: 1.05rem;
    }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-carousel-wrapper {
        padding: 0 20px;
    }
    
    .reviews-carousel {
        gap: 0;
        justify-content: center;
    }
    
    .review-item {
        padding: 1.5rem;
        flex: 0 0 100%; /* Show 1 item on mobile */
        min-width: auto;
        max-width: 100%;
    }
    
    .review-text {
        min-height: auto;
        font-size: 0.9rem;
    }
    
    .review-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .reviewer-name {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .reviews-carousel-wrapper {
        padding: 0 15px;
    }
    
    .review-item {
        padding: 1.25rem;
    }
}

/* Service Page Styles */
.service-hero-section {
    padding: 120px 0 80px;
    background-color: var(--light-bg);
}

.service-hero-content {
    padding-right: 2rem;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '>';
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-light);
}

.service-hero-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-cta {
    padding: 15px 30px;
}

.service-hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.service-details-section {
    padding: 80px 0;
}

.service-content {
    padding-right: 2rem;
}

.service-description .lead {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.pricing-section {
    margin-bottom: 3rem;
}

.pricing-section h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Популярен избор';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: var(--border-radius);
}

.pricing-header {
    padding: 1.5rem 2rem 1rem;
    text-align: center;
    background: var(--light-bg);
}

.pricing-header .area {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.pricing-body {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.pricing-body .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.pricing-body .price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-body .price.custom {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.pricing-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0;
}

.service-notice {
    margin-top: 3rem;
}

.notice-card {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #f39c12;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--shadow);
}

.notice-icon {
    flex-shrink: 0;
}

.notice-icon i {
    color: #f39c12;
    font-size: 1.5rem;
}

.notice-content h4 {
    color: #d68910;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.notice-content p {
    color: #856404;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.4;
}

.detailed-pricing-table {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.pricing-category {
    border-bottom: 1px solid var(--border-color);
}

.pricing-category:last-child {
    border-bottom: none;
}

.pricing-category h4 {
    background: var(--light-bg);
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.pricing-items {
    padding: 0;
}

.pricing-item-detailed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.pricing-item-detailed:last-child {
    border-bottom: none;
}

.pricing-item-detailed:hover {
    background-color: var(--light-bg);
}

.item-name {
    font-weight: 500;
    color: var(--text-dark);
}

.item-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.featured-pricing {
    position: relative;
    background: linear-gradient(135deg, #e8f5e8, #f0f9f0) !important;
    border-left: 4px solid var(--primary-color) !important;
}

.featured-pricing:hover {
    background: linear-gradient(135deg, #d4f4d4, #e8f5e8) !important;
}

.discount-badge {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-includes h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.includes-list {
    display: grid;
    gap: 1rem;
}

.include-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.include-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.include-item span {
    color: var(--text-light);
    line-height: 1.5;
}

.service-sidebar {
    padding-left: 2rem;
}

.sidebar-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.sidebar-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.sidebar-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.other-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.other-services li {
    margin-bottom: 0.8rem;
}

.other-services a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.other-services a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.service-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.service-cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.service-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta-section .btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
}

.service-cta-section .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .service-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .service-sidebar {
        padding-left: 0;
    }
}

@media (max-width: 767.98px) {
    .service-hero-section {
        padding: 100px 0 60px;
    }
    
    .service-hero-section .row {
        flex-direction: column-reverse;
    }
    
    .service-hero-content {
        padding-right: 0;
        margin-top: 2rem;
        text-align: center;
    }
    
    .service-hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .service-hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .service-hero-image {
        margin-bottom: 0;
    }
    
    .service-details-section {
        padding: 60px 0;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-card {
        margin-bottom: 0;
    }
    
    .pricing-body .price {
        font-size: 2rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .service-cta-section {
        padding: 60px 0;
    }
    
    .service-cta-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    .service-hero-section {
        padding: 80px 0 40px;
    }
    
    .service-hero-title {
        font-size: 1.75rem;
    }
    
    .service-hero-description {
        font-size: 0.95rem;
    }
    
    .pricing-cards {
        gap: 0.75rem;
    }
    
    .pricing-card {
        margin-bottom: 0;
    }
    
    .pricing-header {
        padding: 1rem 1.5rem 0.5rem;
    }
    
    .pricing-body {
        padding: 0.75rem 1.5rem 1.5rem;
    }
    
    .pricing-body .price {
        font-size: 1.75rem;
    }
    
    .sidebar-card {
        padding: 1rem;
    }
    
    .pricing-item-detailed {
        padding: 0.75rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .pricing-category h4 {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .item-price {
        font-size: 1rem;
        align-self: flex-end;
    }
}

/* Pricing Display in Sidebar */
.pricing-display {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-bg), #f8f9fa);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price-unit {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.pricing-features li {
    font-size: 0.95rem;
    color: var(--text-dark);
}