/* ===== TOP BAR ===== */
.mathura-top-header {
    background: #1a1a1a;
    color: #fff;
    padding: 10px 0;
}

.mathura-top-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.mathura-contact-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.mathura-top-header a {
    color: #fff;
    text-decoration: none;
}

/* ===== MAIN HEADER ===== */
.mathura-main-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mathura-main-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mathura-logo img {
    height: 60px;
    width: auto;
    max-width: 180px;
}

/* ===== MOBILE MENU ===== */
.mathura-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 5px;
}

.mathura-nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.mathura-nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

.mathura-nav-menu a:hover {
    color: #ff6b00;
}

.mathura-cta-button {
    background: #ff6b00;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    display: inline-block;
}

.mathura-cta-button:hover {
    background: #e55d00;
}

/* ===== HERO SECTION ===== */
.mathura-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.mathura-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.mathura-hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    padding: 0 10px;
}

/* ===== SECTION TITLES ===== */
.mathura-section-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 30px;
    color: #333;
    padding: 0 10px;
}

/* ===== ALL SERVICES SECTION ===== */
.mathura-all-services {
    background: #f8f9fa;
    padding: 60px 20px;
}

.mathura-services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mathura-service-category {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.mathura-service-category:hover {
    transform: translateY(-5px);
}

.mathura-service-category h3 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mathura-service-category ul {
    list-style: none;
    padding: 0;
}

.mathura-service-category li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mathura-service-category li:last-child {
    border-bottom: none;
}

.mathura-service-category i {
    color: #ff6b00;
    font-size: 14px;
}

/* ===== SERVICES GRID ===== */
.mathura-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.mathura-service-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.mathura-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.mathura-service-card h3 {
    color: #ff6b00;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.mathura-service-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #667eea;
}

/* ===== ABOUT SECTION ===== */
.mathura-about-section {
    background: #f8f9fa;
}

.mathura-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.mathura-about-text h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.mathura-about-text p {
    margin-bottom: 15px;
    line-height: 1.7;
}

/* ===== WHY CHOOSE US ===== */
.mathura-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.mathura-feature-card {
    background: #fff;
    padding: 20px;
    border-left: 4px solid #ff6b00;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.mathura-feature-card h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* ===== FAQ SECTION ===== */
.mathura-faq-section {
    background: #fff;
    padding: 60px 20px;
}

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

.mathura-faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.mathura-faq-question {
    background: #f8f9fa;
    color: #333;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #667eea;
    transition: all 0.3s;
}

.mathura-faq-question:hover {
    background: #e9ecef;
}

.mathura-faq-question i {
    transition: transform 0.3s;
}

.mathura-faq-answer {
    padding: 0 20px;
    background: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.mathura-faq-answer.show {
    padding: 20px;
    max-height: 500px;
}

.mathura-faq-answer p {
    color: #555;
    line-height: 1.7;
}

/* ===== TESTIMONIALS SECTION ===== */
.mathura-testimonials-section {
    background: #f8f9fa;
    padding: 60px 20px;
}

.mathura-testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

.mathura-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mathura-testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.mathura-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: #ff6b00;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.mathura-testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.mathura-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.mathura-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}

.mathura-author-info h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.mathura-author-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.mathura-testimonial-rating {
    color: #ff6b00;
    font-size: 1rem;
}

/* ===== BREADCRUMB ===== */
.mathura-breadcrumb {
    background: #f5f5f5;
    padding: 10px 0;
    margin-bottom: 20px;
    font-size: 14px;
}

.mathura-breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.mathura-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.mathura-breadcrumb a:hover {
    color: #ff6b00;
}

.mathura-breadcrumb span {
    color: #999;
}

/* ===== PRICING TABLE ===== */
.mathura-pricing-table {
    overflow-x: auto;
    margin-top: 30px;
    -webkit-overflow-scrolling: touch;
}

.mathura-pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 600px;
}

.mathura-pricing-table th, 
.mathura-pricing-table td {
    padding: 12px 8px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 14px;
}

.mathura-pricing-table th {
    background: #667eea;
    color: #fff;
    font-weight: bold;
}

.mathura-pricing-table tr:hover {
    background: #f5f5f5;
}

/* ===== CONTACT FORM ===== */
.mathura-contact-form {
    max-width: 600px;
    margin: 30px auto;
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mathura-form-group {
    margin-bottom: 15px;
}

.mathura-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.mathura-form-group input,
.mathura-form-group textarea,
.mathura-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    -webkit-appearance: none;
}

.mathura-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.mathura-submit-btn {
    background: #ff6b00;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
    margin-top: 10px;
}

.mathura-submit-btn:hover {
    background: #e55d00;
}

/* ===== FOOTER ===== */
.mathura-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 20px 20px;
}

.mathura-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.mathura-footer-section h3 {
    margin-bottom: 15px;
    color: #ff6b00;
    font-size: 1.2em;
}

.mathura-footer-section ul {
    list-style: none;
}

.mathura-footer-section ul li {
    margin-bottom: 8px;
}

.mathura-footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.mathura-footer-section a:hover {
    color: #ff6b00;
}

.mathura-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 14px;
}

/* ===== FLOATING BUTTONS ===== */
.mathura-floating-buttons {
    position: fixed;
    right: 15px;
    bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.mathura-float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 1.5em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.mathura-float-btn:hover {
    transform: scale(1.1);
}

.mathura-whatsapp-btn {
    background: #25d366;
}

.mathura-call-btn {
    background: #ff6b00;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .mathura-services-categories {
        grid-template-columns: 1fr;
    }
    
    .mathura-testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mathura-mobile-menu-toggle {
        display: block;
        order: 3;
    }

    .mathura-nav-menu {
        display: none;
        position: fixed;
        top: 120px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 999;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

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

    .mathura-nav-menu li {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .mathura-nav-menu li:last-child {
        border-bottom: none;
    }

    .mathura-nav-menu a {
        display: block;
        width: 100%;
        padding: 10px 0;
        font-size: 16px;
    }

    .mathura-main-header .container {
        padding: 10px 15px;
    }

    .mathura-top-header .container {
        padding: 10px 15px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .mathura-top-header .mathura-contact-info {
        gap: 15px;
        justify-content: center;
    }

    .mathura-hero {
        padding: 40px 15px;
    }

    .mathura-hero h1 {
        font-size: 1.6rem;
    }

    .mathura-hero p {
        font-size: 1rem;
    }

    .mathura-about-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mathura-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .mathura-section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

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

    .mathura-contact-form {
        padding: 20px 15px;
        margin: 20px auto;
    }

    .mathura-footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mathura-floating-buttons {
        right: 10px;
        bottom: 10px;
    }

    .mathura-float-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3em;
    }

    .mathura-pricing-table table {
        min-width: 500px;
    }
    
    .mathura-pricing-table th, 
    .mathura-pricing-table td {
        padding: 10px 6px;
        font-size: 13px;
    }
    
    .mathura-service-category {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .mathura-hero h1 {
        font-size: 1.4rem;
    }

    .mathura-hero p {
        font-size: 0.9rem;
    }

    .mathura-cta-button {
        padding: 8px 20px;
        font-size: 14px;
    }

    .mathura-logo img {
        height: 50px;
        max-width: 150px;
    }

    .mathura-service-card h3 {
        font-size: 1.2em;
    }

    .mathura-service-icon {
        font-size: 2em;
    }

    .mathura-feature-card {
        padding: 15px;
    }

    .mathura-breadcrumb {
        font-size: 12px;
    }

    .mathura-top-header .mathura-contact-info {
        flex-direction: column;
        gap: 8px;
    }

    .mathura-nav-menu {
        top: 110px;
        max-height: calc(100vh - 110px);
    }
    
    .mathura-pricing-table table {
        min-width: 400px;
    }
    
    .mathura-pricing-table th, 
    .mathura-pricing-table td {
        padding: 8px 4px;
        font-size: 12px;
    }
    
    .mathura-testimonial-card {
        padding: 20px;
    }
}

@media (max-width: 360px) {
    .mathura-hero {
        padding: 30px 10px;
    }
    
    .mathura-hero h1 {
        font-size: 1.3rem;
    }
    
    .mathura-service-card {
        padding: 15px;
    }
    
    .mathura-float-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }
}
/* FAQ Section - WORKING STYLES */
.mathura-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: #f8f9fa;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question span:first-child {
    flex: 1;
    margin-right: 15px;
}

.faq-icon {
    font-size: 20px;
    font-weight: bold;
    color: #4CAF50;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p {
    padding: 20px 0;
    margin: 0;
    line-height: 1.6;
    color: #555;
    border-top: 1px solid #eee;
}

/* Active state */
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #ff0000;
}