/* 
======================
    GLOBAL STYLES 
======================
*/
:root {
    --primary-color: #9370db;
    --primary-dark: #ffd0e0;
    --secondary-color: #8898aa;
    --accent-color: #f5a623;
    --light-color: #f8f9fa;
    --dark-color: #32325d;
    --gray-color: #6c757d;
    --success-color: #2dce89;
    --info-color: #11cdef;
    --warning-color: #fb6340;
    --danger-color: #f5365c;
    --body-bg: #f7f8fc;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    --transition: all 0.3s ease;
    --border-radius: 0.375rem;
    --border-radius-lg: 0.5rem;
    --container-width: 1200px;
    --color-white: #ffffff;
    --color-pink: #ffd0e0;
    --color-purple: #9370db;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    background: var(--body-bg);
    padding-top: 80px; /* Add padding for fixed header */
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #2a2a2a, #333333, #2a2a2a);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: linear-gradient(135deg, #2c2c2c, #333333, #2c2c2c);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    background: linear-gradient(90deg, #ffffff 50%, var(--color-pink) 50%, var(--color-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-links {
    display: flex;
    list-style: none;
    background: linear-gradient(135deg, #333333, #3a3a3a, #333333);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-white);
    font-weight: 500;
    padding: 8px 15px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 20px;
}

.nav-links a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--color-pink), var(--color-purple));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-purple);
    background: linear-gradient(135deg, rgba(255,208,224,0.15), rgba(147,112,219,0.15));
}

.nav-links a:hover:before {
    width: 100%;
}

.nav-links a.active {
    background: linear-gradient(135deg, rgba(255,208,224,0.2), rgba(147,112,219,0.2));
    color: var(--color-pink);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(120deg, #2c2c2c, #333333, #2c2c2c);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border-radius: 10px;
    padding: 10px 0;
    border: 1px solid rgba(147, 112, 219, 0.2);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 8px 15px;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 15px;
    color: var(--color-white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.dropdown-menu li a:hover {
    background: linear-gradient(135deg, rgba(255,208,224,0.15), rgba(147,112,219,0.15));
    color: var(--color-pink);
    transform: translateX(5px);
}

.nav-links li a i {
    margin-left: 4px;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-links li:hover > a i {
    transform: rotate(-180deg);
}

/* Utility bar */
.utility-bar {
    display: flex;
    align-items: center;
}

.search-form {
    position: relative;
    margin-right: 20px;
}

.search-form input {
    background: #2c2c2c;
    color: var(--color-white);
    border: 1px solid #444;
    padding: 8px 15px;
    border-radius: 20px;
    outline: none;
    transition: all 0.3s ease;
    width: 200px;
}

.search-form input::placeholder {
    color: #888;
}

.search-form input:focus {
    border-color: var(--primary-color);
}

.search-form button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #777;
}

.user-actions {
    display: flex;
    gap: 15px;
}

.user-actions a {
    color: var(--color-white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.user-actions a:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* 
======================
    BANNER STYLES 
======================
*/
.page-banner {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" fill-opacity="0.07" d="M0,64L48,96C96,128,192,192,288,192C384,192,480,128,576,106.7C672,85,768,107,864,112C960,117,1056,107,1152,112C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
    background-position: center bottom;
    z-index: 1;
    opacity: 0.5;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.page-banner h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-banner p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* 
======================
    SERVICES INTRO 
======================
*/
.services-intro {
    padding: 5rem 0;
    background: white;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

/* 
======================
    SERVICE DETAIL 
======================
*/
.service-detail {
    padding: 5rem 0;
    background-color: white;
}

.service-detail.alternate {
    background-color: var(--light-color);
}

.service-detail-container {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.service-detail-img, 
.service-detail-content {
    flex: 0 0 50%;
    max-width: 50%;
}

.service-detail-img img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.service-detail-content ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--success-color);
    font-size: 0.875rem;
}

.service-detail-content strong {
    color: var(--dark-color);
}

.service-action {
    margin-top: 2rem;
    text-align: center;
}

/* Alternar el orden en secciones alternas */
.service-detail.alternate .service-detail-container {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .service-detail-container {
        flex-direction: column !important;
        gap: 2rem;
    }

    .service-detail-img, 
    .service-detail-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* 
======================
    METHODOLOGY 
======================
*/
.methodology {
    padding: 5rem 0;
    background-color: white;
}

.methodology-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.step {
    flex: 1;
    min-width: 250px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 2rem;
    text-align: center;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(94, 114, 228, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

/* 
======================
    PRICING 
======================
*/
.pricing {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 2rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 0 1rem 1rem;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-low{
    text-decoration: line-through;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-low span{
        font-size: 1rem;
        font-weight: 400;
        color: var(--gray-color);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-color);
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
}

.pricing-features ul li i {
    color: var(--success-color);
    margin-right: 0.75rem;
    margin-top: 0.2rem;
}

.pricing-action {
    padding: 0 2rem 2rem;
    text-align: center;
}

.pricing-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.pricing-note i {
    color: var(--info-color);
    margin-right: 0.25rem;
}

/* 
======================
    FAQ 
======================
*/
.faq {
    padding: 5rem 0;
    background-color: white;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-heading p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: white;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.faq-icon i {
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

/* 
======================
    CTA 
======================
*/
.cta {
    padding: 5rem 0;
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* 
======================
    FOOTER 
======================
*/
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 5rem 0 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* 
======================
    TECH SUPPORT 
======================
*/
.tech-support {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.support-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.support-button:hover {
    transform: scale(1.1);
    background-color: var(--primary-dark);
}

.support-chat {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.support-chat.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
}

.chat-messages {
    height: 250px;
    overflow-y: auto;
    padding: 1rem;
}

.message {
    margin-bottom: 1rem;
    max-width: 80%;
}

.message p {
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.message.support {
    margin-right: auto;
}

.message.support p {
    background-color: #f1f1f1;
    border-bottom-left-radius: 0;
}

.message.user {
    margin-left: auto;
}

.message.user p {
    background-color: var(--primary-color);
    color: white;
    border-bottom-right-radius: 0;
}

.chat-input {
    display: flex;
    border-top: 1px solid #e9ecef;
    padding: 0.75rem;
}

.chat-input input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.chat-input button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    width: 40px;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.chat-input button:hover {
    background-color: var(--primary-dark);
}

/* Chat Styles */
.tech-support {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.support-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.support-button i {
    color: white;
    font-size: 24px;
}

.support-button:hover {
    transform: scale(1.1);
    background-color: var(--primary-dark);
}

.support-chat {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 350px;
    height: 450px;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.support-chat.active {
    display: flex;
}

.chat-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
}

.chat-messages {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    margin-bottom: 5px;
}

.message.support {
    background-color: #f0f0f0;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.message.user {
    background-color: var(--primary-color);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.message p {
    margin: 0;
    line-height: 1.4;
}

.chat-input {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex-grow: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.chat-input button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.chat-input button:hover {
    background-color: var(--primary-dark);
}

/* 
======================
    BUTTON STYLES 
======================
*/
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-primary);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
}

/* 
======================
    RESPONSIVE 
======================
*/
@media (max-width: 1200px) {
    .service-detail-container {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .menu-btn {
        display: block;
    }
}

@media (max-width: 992px) {
    .menu-btn {
        display: block;
        color: var(--color-white);
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #2c2c2c, #333333, #2c2c2c);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: all 0.3s ease;
        overflow-y: auto;
        border-radius: 0;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        margin: 0.8rem 0;
    }
    
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0 1rem;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 1rem;
    }
    
    .nav-links li a {
        padding: 1rem;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .utility-bar {
        margin-left: auto;
    }
    
    .search-form {
        display: none;
    }
    
    .service-detail-container {
        flex-direction: column;
    }
    
    .service-detail.alternate .service-detail-container {
        flex-direction: column;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .page-banner h2 {
        font-size: 2.5rem;
    }
    
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .methodology-steps {
        flex-direction: column;
    }
    
    .step {
        min-width: 100%;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-col {
        width: 100%;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-grid {
        gap: 1.5rem;
    }

    .service-image {
        height: 200px;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .testimonial-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .page-banner h2 {
        font-size: 2rem;
    }
    
    .page-banner p {
        font-size: 1rem;
    }
    
    .service-detail-content h2 {
        font-size: 1.7rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .support-chat {
        width: 300px;
    }
}