:root {
    --primary-color: #06add7;
    --secondary-color: #ff6b6b;
    --accent-color: #ffd166;
    --light-color: #fcfdef;
    --dark-color: #111;
    --gray-color: #f5f5f5;
    --success-color: #4caf50;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

.services-page section {
    padding: 5rem 0;
}

.services-page .section-header {
    margin-bottom: 3rem;
}

.services-page .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-page .section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.text-center {
    text-align: center;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1974d2 100%);
    padding: 8rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-section h1 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.btn-outline:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.services-overview {
    background-color: var(--light-color);
}

.overview-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-item p {
    color: #666;
    font-size: 1rem;
}

.featured-services {
    background-color: #fff;
}

.featured-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media (max-width: 425px) {
    .featured-services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.service-content p {
    color: #666;
    margin-bottom: 1.25rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #555;
}

.service-features i {
    color: var(--success-color);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.service-categories {
    background-color: var(--gray-color);
}

.categories-tabs {
    margin-top: 2rem;
}

.tabs-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background-color: #fff;
    border: 2px solid transparent;
    border-radius: 30px;
    color: var(--dark-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    background-color: var(--primary-color);
    color: #fff;
}

.tabs-content {
    position: relative;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.category-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.category-item h4 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.category-item p {
    padding: 0 1rem 1rem;
    color: #666;
    font-weight: 500;
}

.rental-process {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.rental-process::before {
    content: '';
    position: absolute;
    right: -150px;
    bottom: -150px;
    width: 400px;
    height: 400px;
    background-color: rgba(6, 173, 215, 0.05);
    border-radius: 50%;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
}

@media (max-width: 425px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
}

.process-step {
    flex: 1 1 160px;
    max-width: 220px;
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -50px;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    z-index: -1;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(6, 173, 215, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.step-icon i {
    color: var(--primary-color);
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.step-content p {
    color: #666;
    font-size: 0.95rem;
}

.pricing-plans {
    background-color: var(--gray-color);
}

.pricing-tabs {
    margin-top: 2rem;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    background-color: #e9e9e9;
    max-width: 400px;
    margin: 0 auto 3rem;
    border-radius: 30px;
    overflow: hidden;
}

.toggle-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    background-color: transparent;
    color: var(--dark-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-btn.active {
    background-color: var(--primary-color);
    color: #fff;
}

.pricing-plan {
    display: none;
}

.pricing-plan.active {
    display: block;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.pricing-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card.recommended {
    border: 2px solid var(--accent-color);
}

.card-badge {
    position: absolute;
    top: 0;
    right: 2rem;
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 0 0 10px 10px;
}

.card-header {
    padding: 2rem;
    text-align: center;
    background-color: rgba(6, 173, 215, 0.05);
    border-bottom: 1px solid #eee;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.duration {
    color: #777;
    font-size: 0.9rem;
}

.card-body {
    padding: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #666;
}

.features-list i {
    margin-right: 1rem;
    font-size: 1rem;
}

.features-list i.fa-check {
    color: var(--success-color);
}

.features-list i.fa-times {
    color: #ff6b6b;
}

.card-footer {
    padding: 0 2rem 2rem;
    text-align: center;
}

.custom-pricing {
    margin-top: 3rem;
}

.custom-pricing p {
    margin-bottom: 1.5rem;
    color: #666;
}

.custom-solutions {
    background-color: #fff;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.solution-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: max-content;
}

.solution-item:hover {
    transform: translateY(-8px);
}

.solution-image {
    height: 200px;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-content {
    padding: 1.5rem;
}

.solution-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.solution-content p {
    color: #666;
    margin-bottom: 1.25rem;
}

.solution-expanded {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.solution-expanded.active {
    display: block;
}

.solution-expanded ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
    color: #666;
}

.solution-expanded ul li {
    margin-bottom: 0.5rem;
}

.solution-expanded h4 {
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem;
    color: var(--primary-color);
}

.solution-info-item {
    margin-bottom: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    height: auto;
}

.custom-process {
    margin-top: 4rem;
}

.custom-process h3 {
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: 16px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.timeline-content {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    margin: 0;
}

.safety-standards {
    background-color: var(--gray-color);
}

.safety-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.safety-image {
    flex: 1 1 300px;
}

.safety-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.safety-info {
    flex: 1 1 400px;
}

.safety-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature-icon {
    flex: 0 0 50px;
    color: var(--primary-color);
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature-text p {
    color: #666;
    margin: 0;
}

.safety-certifications {
    margin-top: 4rem;
}

.safety-certifications h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.certifications-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.certification-item {
    text-align: center;
}

.certification-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.certification-item p {
    font-weight: 600;
    color: #555;
}

.delivery-area {
    background-color: #fff;
}

.map-container {
    margin-top: 2rem;
}

.india-map {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.map-image {
    width: 100%;
    display: block;
}

.map-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pin-dot {
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(6, 173, 215, 0.3);
    position: relative;
    z-index: 2;
}

.pin-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
}

.pin-label {
    background-color: rgba(6, 173, 215, 0.8);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
    white-space: nowrap;
}

.delivery-info {
    margin-top: 3rem;
}

.delivery-cities h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.city-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.city-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.city-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.delivery-policy {
    margin-top: 3rem;
}

.delivery-policy h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.policy-list li {
    display: flex;
    align-items: center;
    color: #666;
    margin: 0;
}

.policy-list i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.client-showcase {
    background-color: var(--gray-color);
}

.showcase-gallery {
    margin-top: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    color: #fff;
}

.overlay-content h4 {
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.overlay-content p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.featured-clients {
    margin-top: 4rem;
}

.featured-clients h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.client-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.client-logo {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.services-faq {
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem;
    background-color: #f9f9f9;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: #fff;
}

.faq-item.active .faq-question::after {
    content: "−";
    color: #fff;
}

.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.25rem;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    color: #666;
}

.services-testimonials {
    background-color: var(--gray-color);
    position: relative;
    overflow: hidden;
}

.services-testimonials::before {
    content: '';
    position: absolute;
    left: -100px;
    top: 50%;
    width: 200px;
    height: 200px;
    background-color: rgba(6, 173, 215, 0.1);
    border-radius: 50%;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.rating {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: rgba(6, 173, 215, 0.2);
    font-family: serif;
}

@media (max-width: 425px) {
    .testimonial-quote {
        margin: 0;
        padding: 0;
    }
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-info h4 {
    margin: 0 0 0.25rem;
    color: var(--dark-color);
}

.author-info p {
    margin: 0;
    color: #777;
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fff;
    border: none;
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.contact-services {
    background-color: #fff;
    position: relative;
}

.contact-services::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-color: rgba(6, 173, 215, 0.05);
    border-radius: 50% 0 0 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    flex: 1 1 300px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    background-color: rgba(6, 173, 215, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-content {
    flex: 1;
    padding-left: 1rem;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-content p {
    margin: 0 0 0.25rem;
    color: #666;
}

.booking-guarantee {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-start;
}

.guarantee-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 209, 102, 0.2);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.guarantee-content {
    flex: 1;
    padding-left: 1rem;
}

.guarantee-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.guarantee-content p {
    margin: 0;
    color: #666;
}

.contact-form {
    flex: 1 1 500px;
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

.required {
    color: var(--secondary-color);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    background-color: #f9f9f9;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(6, 173, 215, 0.1);
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check input {
    margin-right: 0.5rem;
}

.form-check label {
    margin-bottom: 0;
}

.form-submit {
    margin-top: 2rem;
    text-align: center;
}

.service-guarantees {
    background-color: var(--primary-color);
    color: #fff;
}

.service-guarantees .btn-primary {
    color: #fff !important;
}

.service-guarantees .btn-primary:hover {
    color: var(--primary-color) !important;
}

.service-guarantees .section-header h2,
.service-guarantees .section-header p {
    color: #fff;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.guarantee-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.guarantee-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.guarantee-card .guarantee-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.guarantee-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.guarantee-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.service-guarantees .btn-primary {
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.service-guarantees .btn-primary:hover {
    background-color: transparent;
    color: #fff;
}

.related-posts {
    background-color: var(--light-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.blog-excerpt {
    color: #666;
    margin-bottom: 1.25rem;
}

.view-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.view-more::after {
    content: "→";
    margin-left: 0.5rem;
    transition: var(--transition);
}

.view-more:hover::after {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .services-page .section-header h2 {
        font-size: 2.2rem;
    }
    
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .gallery-grid {
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery-item.large {
        grid-column: auto;
    }
    
    .process-step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .services-page section {
        padding: 4rem 0;
    }
    
    .services-page .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 6rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .safety-content {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .policy-list {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .services-page section {
        padding: 3rem 0;
    }
    
    .services-page .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .tabs-navigation {
        flex-direction: column;
    }
}
