/* Isha Physiocare - Custom Styles */

/* Color Scheme */
.restore-motion-page {
    --rm-primary: #059669;
    --rm-primary-dark: #047857;
    --rm-secondary: #0ea5e9;
    --rm-accent: #f59e0b;
    --rm-light: #f0fdf4;
    --rm-dark: #1e293b;
    --rm-gray: #64748b;
}

/* Responsive Images */
.restore-motion-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* show Gujarati only by default */
.lang-en {
    display: none;
}



/* Override primary colors for this page */
.restore-motion-page .btn-primary {
    background-color: var(--rm-primary);
    border-color: var(--rm-primary);
}

.restore-motion-page .btn-primary:hover {
    background-color: var(--rm-primary-dark);
    border-color: var(--rm-primary-dark);
}

.restore-motion-page .btn-secondary {
    color: var(--rm-primary);
    border-color: var(--rm-primary);
}

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

/* Navbar Override */
.rm-navbar .logo i {
    color: var(--rm-primary);
}

.rm-navbar .logo-text {
    color: var(--rm-primary);
}

.rm-navbar .logo-text span {
    color: var(--rm-secondary);
}

.rm-navbar .nav-links a:hover {
    color: var(--rm-primary);
}

.rm-navbar .nav-links a::after {
    background-color: var(--rm-primary);
}

/* Hero Section */
.rm-hero {
    background: linear-gradient(135deg, var(--rm-light) 0%, #ffffff 100%);
    position: relative;
}

.rm-hero::before {
    background-color: var(--rm-primary);
    opacity: 0.05;
}

.rm-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--rm-primary), var(--rm-primary-dark));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.rm-badge i {
    color: var(--rm-accent);
}

.rm-hero .hero-title span {
    color: var(--rm-primary);
}

.rm-hero .hero-title span::after {
    background-color: rgba(5, 150, 105, 0.3);
}

.rm-location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.rm-location-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--rm-gray);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.rm-location-tags span:hover {
    background: var(--rm-primary);
    color: white;
}

.rm-location-tags span i {
    color: var(--rm-primary);
    font-size: 0.75rem;
}

.rm-location-tags span:hover i {
    color: white;
}

.rm-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--rm-dark);
    font-weight: 500;
}

.quick-info-item i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 50%;
    color: var(--rm-primary);
}

.rm-hero-float-card {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floating 3s ease-in-out infinite;
}

.float-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rm-primary);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
}

.float-text span {
    display: block;
    font-weight: 600;
    color: var(--rm-dark);
}

.float-text small {
    color: var(--rm-gray);
    font-size: 0.85rem;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Features Strip */
.rm-features-strip {
    background: var(--rm-primary);
    padding: 1.5rem 5%;
}

.features-strip-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-strip-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 500;
}

.feature-strip-item i {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Services Section */
.rm-services {
    padding: 6rem 5%;
    background: #f8fafc;
}

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

.rm-service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

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

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

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

.rm-service-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.category-badge {
    background: var(--rm-accent);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.rm-service-content {
    padding: 1.5rem;
}

.rm-service-content h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    color: var(--rm-dark);
    margin-bottom: 0.75rem;
}

.rm-service-content h3 i {
    color: var(--rm-primary);
}

.rm-service-content>p {
    color: var(--rm-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.rm-service-list {
    list-style: none;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.rm-service-list li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--rm-dark);
}

.rm-service-list li i {
    color: var(--rm-primary);
    font-size: 0.75rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Pricing Section */
.rm-pricing {
    padding: 6rem 5%;
    background: white;
}

.rm-pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.rm-pricing-card {
    background: var(--rm-light);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.rm-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.rm-pricing-card.popular {
    background: white;
    border-color: var(--rm-primary);
    transform: scale(1.05);
}

.rm-pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rm-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    color: var(--rm-dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1.5rem;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rm-primary);
}

.price .period {
    display: block;
    color: var(--rm-gray);
    font-size: 0.9rem;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--rm-dark);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--rm-primary);
}

/* Add-on Services */
.rm-addons {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--rm-primary) 0%, var(--rm-primary-dark) 100%);
}

.rm-addons .section-header h2,
.rm-addons .section-header p {
    color: white;
}

.rm-addons .section-header h2::after {
    background-color: white;
}

.rm-addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.rm-addon-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.rm-addon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.addon-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.addon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rm-addon-card:hover .addon-image img {
    transform: scale(1.05);
}

.rm-addon-card h4 {
    color: var(--rm-dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.rm-addon-card p {
    color: var(--rm-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.addon-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--rm-primary);
}

.addon-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--rm-gray);
}

/* Why Choose Us */
.rm-why-choose {
    padding: 6rem 5%;
    background: #f8fafc;
}

.rm-why-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.rm-why-content {
    flex: 1;
}

.rm-why-content h2 {
    font-size: 2.5rem;
    color: var(--rm-dark);
    margin-bottom: 1rem;
    position: relative;
}

.rm-why-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--rm-primary);
    border-radius: 2px;
}

.rm-why-content>p {
    color: var(--rm-gray);
    margin: 1.5rem 0 2rem;
    line-height: 1.8;
}

.rm-why-features {
    display: grid;
    gap: 1.5rem;
}

.why-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 12px;
    color: var(--rm-primary);
    font-size: 1.2rem;
}

.why-text h4 {
    color: var(--rm-dark);
    margin-bottom: 0.3rem;
}

.why-text p {
    color: var(--rm-gray);
    font-size: 0.9rem;
}

.rm-why-image {
    flex: 1;
    position: relative;
}

.rm-why-image>img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.rm-stats-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rm-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--rm-gray);
}

/* Service Areas */
.rm-service-areas {
    padding: 5rem 5%;
    background: white;
}

.rm-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.rm-area-card {
    background: var(--rm-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.rm-area-card:hover {
    border-color: var(--rm-primary);
    transform: translateY(-3px);
}

.rm-area-card i {
    font-size: 2rem;
    color: var(--rm-primary);
    margin-bottom: 1rem;
}

.rm-area-card h4 {
    color: var(--rm-dark);
    margin-bottom: 0.5rem;
}

.rm-area-card p {
    color: var(--rm-gray);
    font-size: 0.9rem;
}

/* Testimonials */
.rm-testimonials {
    padding: 6rem 5%;
    background: var(--rm-light);
}

.rm-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.rm-testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.rm-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: var(--rm-accent);
}

.rm-testimonial-card>p {
    color: var(--rm-dark);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 50%;
    color: var(--rm-primary);
}

.author-info strong {
    display: block;
    color: var(--rm-dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--rm-gray);
}

/* FAQ Section */
.rm-faq {
    padding: 5rem 5%;
    background: white;
}

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

.rm-faq-item {
    background: var(--rm-light);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rm-faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.faq-question i {
    color: var(--rm-primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-answer p {
    color: var(--rm-gray);
    line-height: 1.7;
}

/* Contact Section */
.rm-contact-info {
    background: linear-gradient(135deg, var(--rm-primary) 0%, var(--rm-primary-dark) 100%) !important;
    color: white !important;
}

.rm-contact-info h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.rm-contact-info .info-item i {
    color: white;
}

.rm-contact-info .info-item p {
    color: rgba(255, 255, 255, 0.9);
}

.rm-contact-info .info-item strong {
    color: white;
}

.rm-social-contact {
    margin-top: 2rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.rm-contact-form select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rm-contact-form select:focus {
    outline: none;
    border-color: var(--rm-primary);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
}

/* Footer */
.rm-footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.rm-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rm-footer-logo i {
    font-size: 1.8rem;
    color: var(--rm-primary);
}

.rm-footer-logo h3 {
    margin-bottom: 0;
    color: white;
}

.rm-footer .footer-col h3::after {
    background-color: var(--rm-primary);
}

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

/* Floating WhatsApp Button */
.rm-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.rm-whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Section Header Override */
.restore-motion-page .section-header h2::after {
    background-color: var(--rm-primary);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .rm-why-container {
        flex-direction: column;
    }

    .rm-stats-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 2rem;
        justify-content: center;
    }

    .rm-hero-float-card {
        display: none;
    }

    /* Tablet font improvements */
    .section-header h2 {
        font-size: 2rem !important;
    }

    .rm-service-card h3 {
        font-size: 1.2rem !important;
    }

    .rm-pricing-card h3 {
        font-size: 1.1rem !important;
    }

    .rm-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rm-addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .addon-image {
        height: 200px;
    }

    /* Navbar optimization for smaller screens so buttons don't wrap and break display */
    .nav-buttons .btn-primary span {
        display: none;
        /* Hide text, keep icon */
    }

    .nav-buttons .btn-primary {
        padding: 0.6rem;
        border-radius: 50%;
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-buttons .btn-primary i {
        margin: 0;
    }
}

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

    .rm-service-list {
        grid-template-columns: 1fr;
    }

    .rm-pricing-card.popular {
        transform: none;
    }

    .rm-pricing-card.popular:hover {
        transform: translateY(-5px);
    }

    .features-strip-container {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .rm-location-tags {
        justify-content: center;
    }

    .rm-quick-info {
        justify-content: center;
    }

    .rm-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .rm-whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    /* Mobile font improvements */
    .section-header h2 {
        font-size: 1.85rem !important;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 1.05rem !important;
        margin-top: 0.5rem;
    }

    .rm-addon-card {
        padding: 1.75rem 1.5rem;
    }

    .rm-addon-card h4 {
        font-size: 1.2rem;
    }

    .rm-addon-card p {
        font-size: 0.95rem;
    }

    .addon-price {
        font-size: 1.3rem;
    }

    .rm-service-card h3 {
        font-size: 1.25rem !important;
    }

    .rm-service-card p {
        font-size: 0.95rem;
    }

    .rm-service-image {
        height: 190px;
    }

    .rm-pricing-card h3 {
        font-size: 1.2rem !important;
    }

    .price .amount {
        font-size: 2rem !important;
    }

    .rm-addons-grid {
        grid-template-columns: 1fr;
    }

    .addon-image {
        height: 200px;
    }

    .rm-why-image img {
        max-width: 100%;
        height: auto;
    }

    /* Navbar optimization for mobile */
    .nav-buttons {
        gap: 0.5rem;
        margin-left: auto;
        margin-right: 1rem;
    }

    .rm-navbar .logo-text {
        font-size: 1.2rem;
    }

    #lang-toggle {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .rm-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }

    .hero-title {
        font-size: 2rem !important;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.2rem;
    }

    .rm-pricing-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .rm-pricing-card {
        padding: 1.5rem;
    }

    .rm-areas-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .rm-area-card {
        padding: 1.5rem;
    }

    .rm-stats-card {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.5rem;
        width: 90%;
        margin: 0 auto;
        transform: translateY(-20px);
    }

    /* Extra mobile font size optimization */
    .section-header h2 {
        font-size: 1.75rem !important;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    .section-header p {
        font-size: 1rem !important;
        line-height: 1.5;
        padding-top: 0.5rem;
    }

    .rm-service-card {
        padding-bottom: 0.5rem;
    }

    .rm-service-card h3 {
        font-size: 1.25rem !important;
    }

    .rm-service-card p {
        font-size: 0.95rem !important;
        line-height: 1.5;
    }

    .rm-addon-card {
        padding: 1.25rem;
    }

    .rm-addon-card h4 {
        font-size: 1.15rem;
    }

    .rm-addon-card p {
        font-size: 0.95rem;
    }

    .addon-image {
        height: 160px;
        margin-bottom: 1rem;
    }

    .addon-price {
        font-size: 1.2rem;
    }

    .addon-price span {
        font-size: 0.9rem;
    }

    .price {
        margin-bottom: 1rem;
    }

    .price .amount {
        font-size: 2rem !important;
    }

    .pricing-features ul li {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }

    .rm-why-features {
        gap: 1.25rem;
    }

    .why-feature {
        padding: 0.5rem 0;
    }

    .why-feature h4 {
        font-size: 1.1rem;
    }

    .why-feature p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .rm-testimonial-card {
        padding: 1.5rem;
    }

    .rm-testimonial-card p {
        font-size: 0.95rem;
    }

    .faq-question span {
        font-size: 1rem;
        line-height: 1.4;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    /* Responsive padding and margins */
    .rm-services,
    .rm-addons,
    .rm-pricing,
    .rm-why-choose,
    .rm-service-areas,
    .rm-testimonials,
    .rm-faq,
    .rm-contact {
        padding: 3.5rem 1.25rem !important;
    }

    .rm-features-strip {
        padding: 2rem 1.25rem;
    }

    /* Navbar adjustment for very small devices */
    .rm-navbar {
        padding: 1rem 1.25rem !important;
    }

    .rm-navbar .logo-text {
        font-size: 1.15rem;
    }
}