:root {
    --accent: #f96b39;
    --accent-light: rgba(249, 107, 57, 0.1);
    --accent-gradient: linear-gradient(135deg, #f96b39 0%, #ff8f6b 100%);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.1);
    --shadow-accent: 0 10px 30px rgba(249, 107, 57, 0.2);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-hero {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin-bottom: -60px;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    transform: scale(1.1);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    backdrop-filter: blur(10px);
}
.hero-content {
    position: relative;
    z-index: 10;
    padding: 60px 0 100px;
}
.service-logo-wrapper {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 50%;
    padding: 8px;
    box-shadow: var(--shadow-medium);
    margin: 0 auto 24px;
}
.service-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.service-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
}
.rating-badge .stars {
    color: #ffd700;
}
.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.btn-hero-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: var(--shadow-accent);
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(249, 107, 57, 0.3);
}
.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}
.btn-hero-secondary.favorited {
    background: #ff4757;
    border-color: #ff4757;
}

/* Info cards - Masala style */
.masala-info-section {
    margin-top: -40px;
    position: relative;
    z-index: 10;
}
.masala-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.masala-info-card {
    background: linear-gradient(135deg, #fff7f2, #ffffff);
    border-radius: 22px;
    padding: 22px 26px;
    border: 1px solid #ffe2d3;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: var(--transition);
}
.masala-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.14);
}
.masala-info-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(249, 107, 57, 0.15);
    color: #f96b39;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.masala-label {
    font-size: 12px;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 6px;
}
.masala-info-content p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    word-break: break-all;
    overflow-wrap: break-word;
}
.masala-info-content a {
    color: #f96b39;
    text-decoration: none;
}
.masala-info-content a:hover {
    text-decoration: underline;
}

/* Gallery */
.gallery-section {
    padding: 5px 0;
    margin-bottom: 15px;
}
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #32325d;
    margin: 0;
}
.section-action {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}
.section-action:hover {
    color: #e55a2b;
}
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 200px);
    gap: 12px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}
.gallery-item:first-child {
    grid-row: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}
.gallery-item-overlay i {
    color: white;
    font-size: 24px;
}
.gallery-more {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}
.gallery-more-count {
    font-size: 28px;
    font-weight: 700;
}
.gallery-more-text {
    font-size: 14px;
    opacity: 0.9;
}

/* About */
.about-section {
    padding: 0 0 40px;
}
.about-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.about-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(249, 107, 57, 0.15);
    color: #f96b39;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.about-card-masala {
    position: relative;
    background: linear-gradient(135deg, #fff7f2, #ffffff);
    border-radius: 20px;
    padding: 32px 36px;
    border: 1px solid #ffe2d3;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}
.about-card-masala:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.about-quote {
    position: absolute;
    top: -10px;
    left: 18px;
    font-size: 64px;
    color: rgba(249, 107, 57, 0.15);
    font-weight: 700;
    line-height: 1;
}
.about-text-masala {
    font-size: 17px;
    line-height: 1.85;
    color: #444;
    margin: 0;
}
.about-text-masala.collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.btn-read-more {
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 600;
    padding: 0;
    margin-top: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-read-more:hover {
    color: #e55a2b;
}

/* IMPROVED Service Details & Pricing */
.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.service-tile {
    display: flex;
    gap: 14px;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    padding: 16px 18px;
    border: 1px solid #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.service-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(249, 107, 57, 0.2);
}

.service-tile-full {
    grid-column: 1 / -1;
}

.service-icon {
    width: 44px;
    height: 44px;
    background: rgba(249, 107, 57, 0.12);
    color: #f96b39;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.service-info-text {
    flex: 1;
    min-width: 0;
}

.service-label {
    font-size: 12px;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
    line-height: 1.2;
}

.service-data {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    word-break: break-word;
}

/* Pricing Details Section */
.pricing-details-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.pricing-subtitle {
    font-size: 15px;
    font-weight: 700;
    color: #32325d;
    margin-bottom: 12px;
    padding-left: 4px;
}

.service-prices-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-price-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fff9f6, #ffffff);
    border-radius: 12px;
    padding: 14px 16px;
    border: 1px solid #ffe8dc;
    transition: all 0.2s ease;
}

.service-price-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(249, 107, 57, 0.1);
    border-color: rgba(249, 107, 57, 0.3);
}

.service-price-icon {
    width: 36px;
    height: 36px;
    background: rgba(249, 107, 57, 0.15);
    color: #f96b39;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.service-price-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.service-price-name {
    font-size: 14px;
    color: #555;
    font-weight: 600;
    line-height: 1.3;
}

.service-price-amount {
    font-size: 16px;
    font-weight: 800;
    color: #f96b39;
    white-space: nowrap;
}

/* Map */
.map-section {
    padding: 0 0 40px;
}
.map-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 400px;
}
.map-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Opening Hours - ALWAYS SHOWN (7 days, closed if no data) */
.hours-section {
    padding: 0 0 40px;
}
.hours-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-soft);
}
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hours-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}
.hours-item:last-child {
    border-bottom: none;
}
.hours-item.today {
    background: var(--accent-light);
    margin: 0 -28px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
}
.hours-day {
    font-weight: 600;
    color: #32325d;
}
.hours-time {
    display: flex;
    gap: 8px;
    align-items: center;
}
.time-chip {
    background: #f0f4f8;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 13px;
    color: #525f7f;
    font-weight: 500;
}
.hours-closed {
    color: #ff4757;
    font-weight: 500;
}

/* Reviews */
.reviews-section {
    padding: 0 0 40px;
}
.reviews-summary {
    background: linear-gradient(135deg, #32325d 0%, #525f7f 100%);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: white;
    margin-bottom: 24px;
}
.reviews-summary-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.rating-big-number {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}
.rating-big-stars {
    color: #ffd700;
    font-size: 18px;
    margin-top: 8px;
}
.rating-big-count {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 4px;
}
.rating-bars {
    flex: 1;
    min-width: 200px;
}
.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.rating-bar-label {
    font-size: 13px;
    width: 80px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.rating-bar-track {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    overflow: hidden;
}
.rating-bar-fill {
    height: 100%;
    background: #ffd700;
    border-radius: 50px;
}
.rating-bar-count {
    font-size: 13px;
    width: 30px;
    text-align: right;
    opacity: 0.8;
}

.review-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.review-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.review-author {
    font-weight: 600;
    color: #32325d;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.review-date {
    font-size: 13px;
    color: #8898aa;
}
.review-stars {
    color: #ffd700;
    font-size: 14px;
}
.review-title {
    font-weight: 600;
    color: #32325d;
    margin-bottom: 8px;
    font-size: 16px;
}
.review-text {
    color: #525f7f;
    line-height: 1.7;
    margin: 0;
}

/* Add Review */
.add-review-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    border: 2px dashed var(--accent);
    background: linear-gradient(
        135deg,
        rgba(249, 107, 57, 0.03) 0%,
        rgba(255, 143, 107, 0.01) 100%
    );
}
.add-review-title {
    font-size: 20px;
    font-weight: 700;
    color: #32325d;
    margin-bottom: 8px;
}
.add-review-subtitle {
    color: #8898aa;
    margin-bottom: 24px;
}
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}
.star-rating input[type="radio"] {
    display: none;
}
.star-rating label {
    font-size: 32px;
    color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}
.star-rating input[type="radio"]:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #ffd700;
    transform: scale(1.1);
}
.review-form-group {
    margin-bottom: 16px;
    text-align: left;
}
.review-form-group label {
    font-weight: 600;
    color: #32325d;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}
.review-form-group input,
.review-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8ecf0;
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition);
}
.review-form-group input:focus,
.review-form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 4px var(--accent-light);
}
.btn-submit-review {
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-accent);
    margin-top: 8px;
}
.btn-submit-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(249, 107, 57, 0.3);
}

/* Sidebar */
.sidebar-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 20px;
}
.sidebar-title {
    font-size: 17px;
    font-weight: 700;
    color: #32325d;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}
.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
}
.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}
.social-link.facebook {
    background: #1877f2;
}
.social-link.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}
.social-link.twitter {
    background: #1da1f2;
}
.social-link.linkedin {
    background: #0a66c2;
}
.social-link.youtube {
    background: #ff0000;
}
.social-link.whatsapp {
    background: #25d366;
}

.get-touch-masala {
    background: linear-gradient(135deg, #fff7f2, #ffffff);
    border: 1px solid #ffe2d3;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}
.get-touch-masala:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}
.get-touch-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.get-touch-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(249, 107, 57, 0.15);
    color: #f96b39;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.contact-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8ecf0;
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition);
    margin-bottom: 16px;
}
.contact-input:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 4px var(--accent-light);
}
.contact-btn-masala {
    width: 100%;
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(249, 107, 57, 0.35);
}
.contact-btn-masala:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(249, 107, 57, 0.45);
}

.contact-input.is-invalid {
    border: 1.5px solid #ff3b30;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff3b30' viewBox='0 0 512 512'%3E%3Cpath d='M256 48C141.1 48 48 141.1 48 256s93.1 208 208 208 208-93.1 208-208S370.9 48 256 48zm0 96c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32v-96c0-17.7 14.3-32 32-32zm0 224c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

/* Mobile */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    z-index: 1000;
}
.btn-mobile {
    flex: 1;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
}
.btn-mobile-primary {
    background: var(--accent-gradient);
    color: white;
}
.btn-mobile-secondary {
    background: #f0f4f8;
    color: #32325d;
}

#wt-service-reviews {
    scroll-margin-top: 120px;
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 150px;
    }
    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }
    .reviews-summary-content {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 767px) {
    .service-hero {
        min-height: 350px;
    }
    .hero-content {
        padding: 40px 0 80px;
    }
    .service-title {
        font-size: 24px;
    }
    .service-logo-wrapper {
        width: 100px;
        height: 100px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn-hero {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 150px 150px;
    }
    .gallery-item:first-child {
        grid-column: span 2;
    }
    .masala-info-grid {
        grid-template-columns: 1fr;
    }
    .mobile-bottom-bar {
        display: block;
    }
    body {
        padding-bottom: 80px;
        overflow-x: hidden;
    }
    html {
        overflow-x: hidden;
    }
    .page-wraper,
    .page-content {
        overflow-x: hidden;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .masala-info-card {
        min-width: 0;
    }
    .about-card-masala {
        padding: 20px 18px;
    }
}
/* Mobile-only pricing and service sections below gallery */

@media (max-width: 767px) {
    /* Hide original sidebar on mobile */
    .col-lg-4 {
        display: none;
    }

    /* Make main content full width on mobile */
    .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Mobile sections container - insert after gallery */
    .mobile-service-pricing-section {
        display: block;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /* Service Details Card - Mobile */
    .mobile-service-details {
        background: white;
        border-radius: var(--radius-lg);
        padding: 24px;
        box-shadow: var(--shadow-soft);
        margin-bottom: 20px;
    }

    .mobile-section-title {
        font-size: 18px;
        font-weight: 700;
        color: #32325d;
        margin-bottom: 18px;
        padding-bottom: 12px;
        border-bottom: 2px solid #f0f0f0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-section-title i {
        color: var(--accent);
        font-size: 20px;
    }

    /* Service grid for mobile */
    .mobile-service-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mobile-service-tile {
        display: flex;
        gap: 14px;
        align-items: center;
        background: linear-gradient(135deg, #fff9f6, #ffffff);
        border-radius: 14px;
        padding: 16px 18px;
        border: 1px solid #ffe8dc;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        transition: all 0.2s ease;
    }

    .mobile-service-tile:active {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .mobile-service-icon {
        width: 44px;
        height: 44px;
        background: rgba(249, 107, 57, 0.12);
        color: #f96b39;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        flex-shrink: 0;
    }

    .mobile-service-info {
        flex: 1;
        min-width: 0;
    }

    .mobile-service-label {
        font-size: 11px;
        color: #888;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        margin-bottom: 4px;
        line-height: 1.2;
    }

    .mobile-service-data {
        font-size: 14px;
        font-weight: 700;
        color: #333;
        line-height: 1.3;
        word-break: break-word;
    }

    /* Pricing Card - Mobile */
    .mobile-pricing-card {
        background: white;
        border-radius: var(--radius-lg);
        padding: 24px;
        box-shadow: var(--shadow-soft);
        margin-bottom: 20px;
    }

    /* Pricing details section */
    .mobile-pricing-details {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #f0f0f0;
    }

    .mobile-pricing-subtitle {
        font-size: 15px;
        font-weight: 700;
        color: #32325d;
        margin-bottom: 12px;
        padding-left: 4px;
    }

    .mobile-service-prices-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-service-price-item {
        display: flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(135deg, #fff9f6, #ffffff);
        border-radius: 12px;
        padding: 14px 16px;
        border: 1px solid #ffe8dc;
        transition: all 0.2s ease;
    }

    .mobile-service-price-item:active {
        transform: translateX(2px);
        box-shadow: 0 4px 12px rgba(249, 107, 57, 0.1);
    }

    .mobile-service-price-icon {
        width: 36px;
        height: 36px;
        background: rgba(249, 107, 57, 0.15);
        color: #f96b39;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        flex-shrink: 0;
    }

    .mobile-service-price-details {
        flex: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }

    .mobile-service-price-name {
        font-size: 14px;
        color: #555;
        font-weight: 600;
        line-height: 1.3;
    }

    .mobile-service-price-amount {
        font-size: 16px;
        font-weight: 800;
        color: #f96b39;
        white-space: nowrap;
    }

    /* Social Links - Mobile */
    .mobile-social-section {
        background: white;
        border-radius: var(--radius-lg);
        padding: 24px;
        box-shadow: var(--shadow-soft);
        margin-bottom: 20px;
    }

    .mobile-social-links {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .mobile-social-link {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
        transition: var(--transition);
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .mobile-social-link:active {
        transform: scale(0.95);
    }

    .mobile-social-link.facebook {
        background: #1877f2;
    }
    .mobile-social-link.instagram {
        background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    }
    .mobile-social-link.twitter {
        background: #1da1f2;
    }
    .mobile-social-link.linkedin {
        background: #0a66c2;
    }
    .mobile-social-link.youtube {
        background: #ff0000;
    }
    .mobile-social-link.whatsapp {
        background: #25d366;
    }
}

/* Desktop - hide mobile sections */
@media (min-width: 768px) {
    .mobile-service-pricing-section,
    .mobile-service-details,
    .mobile-pricing-card,
    .mobile-social-section {
        display: none !important;
    }
}
/* Only Get In Touch is sticky */
/* Only Get In Touch is sticky */
.get-in-touch-wrapper {
    position: sticky;
    top: 110px;
    margin-top: 12px;
    z-index: 100;
    transition: all 0.3s ease;
}

/* Disable sticky on mobile */
@media (max-width: 767px) {
    .get-in-touch-wrapper {
        position: relative;
        top: auto;
        margin-top: 0;
    }
}
