@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Manrope:wght@200..800&family=Sora:wght@100..800&display=swap');

:root {
    --color-red: #BB2233;
    --color-orange: #FF9100;
    --color-white: #FDF5E6;
    --color-blue: #0F172A;
    --color-blue-light: #1E293B;
    --color-text: #0F172A;
    --color-text-light: #334155;
    --font-main: 'Manrope', sans-serif;
    --font-heading: 'Sora', sans-serif;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 12px -1px rgb(0 0 0 / 0.1), 0 2px 8px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-white);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-blue);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Layout --- */

header {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--color-orange);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--color-orange);
}

nav ul {
    display: flex;
    gap: 2rem;
}

.menu-btn {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

nav ul li a {
    color: var(--color-white);
    font-weight: 600;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-orange);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--color-orange);
}

/* --- Hero Section --- */

.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--color-blue) 0%, rgba(187, 34, 51, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    color: var(--color-white);
    margin-top: -80px;
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-red);
    color: var(--color-white);
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
}

.btn:hover {
    background: transparent;
    border-color: var(--color-orange);
    color: var(--color-orange);
    transform: translateY(-3px);
}

/* --- Sections --- */

section {
    padding: 100px 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--color-red);
}

/* Dark section title variants */
.dark-section .section-title h2,
.dark-section h2 {
    color: white !important;
}

.dark-section .section-title p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Ensure cards in dark sections keep their readable text */
.dark-section .blog-card p,
.dark-section .service-card p,
.dark-section .faq-answer p {
    color: #000000 !important;
}

/* --- Services Grid --- */

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

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--color-orange);
}

.service-card i {
    font-size: 3rem;
    color: var(--color-red);
    margin-bottom: 1.5rem;
}

/* --- Sidebar & Utility Boxes --- */
.sidebar-box {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
}

.sidebar-box.dark, .sidebar-box[style*="background: var(--color-blue)"] {
    background: #0f172a !important;
    color: white !important;
}

.sidebar-box h3 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    color: inherit;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: inherit;
}

.process-list li i {
    color: var(--color-red) !important;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

/* --- Blog --- */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.location-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.location-info {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.location-info h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--color-blue);
}

.location-info p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    flex-grow: 1;
    font-size: 1.05rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    color: var(--color-blue);
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.location-card:hover .btn-link {
    background: var(--color-blue);
    color: white;
    border-color: var(--color-blue);
}

.blog-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    background: var(--color-blue);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-content {
    padding: 2.5rem;
}

.blog-content p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.blog-content h3 {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    color: var(--color-blue);
}

.blog-date {
    font-size: 0.875rem;
    color: var(--color-orange);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

/* --- Footer --- */

footer {
    background: var(--color-blue);
    color: #ffffff;
    padding: 100px 2rem 40px;
}

footer p {
    color: #ffffff;
    opacity: 1;
    line-height: 1.8;
}

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

.footer-about h3 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 1.5rem;
    color: var(--color-orange);
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a:hover {
    color: var(--color-orange);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* --- Testimonials --- */

.testimonials {
    background: var(--color-blue);
    color: white;
}

.testimonials h2 { color: white; }

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

.testimonial-card {
    background: var(--glass);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-orange);
}

.user-info h4 { color: white; margin: 0; }
.user-info p { font-size: 0.8rem; color: var(--color-orange); }

/* --- FAQ --- */

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

.faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-sm);
}

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

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    color: var(--color-text-light);
}

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

.faq-item.active .fa-chevron-down {
    transform: rotate(180deg);
}

/* --- Pricing --- */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.pricing-card.popular {
    border-color: var(--color-red);
    transform: scale(1.05);
    z-index: 10;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-red);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 1.5rem 0;
    color: var(--color-blue);
}

.price span { font-size: 1rem; color: var(--color-text-light); }

.pricing-card ul {
    margin: 2rem 0;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card ul li i { color: #10b981; }

/* --- Newsletter --- */

.newsletter {
    background: var(--color-orange);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.newsletter h2 { color: white; margin-bottom: 1rem; }

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    outline: none;
}

.newsletter-form .btn {
    background: var(--color-blue);
}

/* --- Mobile Menu --- */

.menu-btn {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-btn { display: block; }
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-blue);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }
    nav ul.active { display: flex; }
    .newsletter-form { flex-direction: column; }
    .pricing-card.popular { transform: none; }
}

/* Fixed Mobile Call Button */
.mobile-call-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-red);
    color: #ffffff;
    text-align: center;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 900;
    text-decoration: none;
    z-index: 2001;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .mobile-call-btn {
        display: flex;
    }
    footer {
        padding-bottom: 100px;
    }
}

.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-align: center;
}
.about-hero h1 { color: var(--color-white); font-size: 3.5rem; }
.about-content {
    max-width: 800px;
    margin: -50px auto 100px;
    background: white;
    padding: 4rem;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
}
.stats {
    display: flex;
    justify-content: space-around;
    padding: 4rem 2rem;
    background: var(--color-red);
    color: white;
    text-align: center;
}
.stat-item h3 { font-size: 3rem; color: white; margin-bottom: 0.5rem; }
.stat-item p { font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* --- Expanded About Us --- */
.about-content-expanded {
    padding: 100px 2rem;
    background: #fff;
}
.about-container {
    max-width: 1000px;
    margin: 0 auto;
}
.about-text-block {
    margin-bottom: 4rem;
}
.about-text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.about-card-mini {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}
.about-card-mini:hover {
    transform: translateY(-5px);
    border-color: var(--color-red);
    box-shadow: var(--shadow-md);
}
.about-card-mini i {
    font-size: 2.5rem;
    color: var(--color-red);
    margin-bottom: 1rem;
}
.about-card-mini h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}
.about-card-mini p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.step {
    position: relative;
    padding-top: 2rem;
}
.step-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(187, 34, 51, 0.1);
    position: absolute;
    top: -10px;
    left: 0;
    z-index: 1;
}
.step h4 {
    position: relative;
    z-index: 2;
    margin-bottom: 0.75rem;
    color: var(--color-blue);
}
.step p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.coverage-list a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition);
}

.coverage-list a:hover {
    color: var(--color-red);
    padding-left: 5px;
}

/* --- Pricing Section --- */
#pricing { padding: 100px 2rem; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.pricing-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.pricing-card.popular {
    border: 2px solid var(--color-red);
    transform: scale(1.05);
    z-index: 2;
}
.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-red);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}
.pricing-card h3 { margin-bottom: 1.5rem; color: var(--color-blue); }
.price { font-size: 3.5rem; font-weight: 800; margin-bottom: 2rem; color: var(--color-red); }
.price span { font-size: 1.5rem; vertical-align: super; }
.pricing-card ul { list-style: none; margin-bottom: 2.5rem; text-align: left; }
.pricing-card ul li { margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; color: var(--color-text-light); }
.pricing-card ul li i { color: var(--color-orange); }

/* --- FAQ Section --- */
#faq { padding: 100px 2rem; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-blue);
    transition: var(--transition);
}
.faq-question:hover { background: #f8fafc; }
.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--color-text);
    line-height: 1.8;
    font-weight: 600;
    font-size: 1.05rem;
}
.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 200px;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.contact-section {
    padding: 150px 2rem 100px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}
.contact-info-card {
    background: var(--color-blue);
    color: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}
.contact-info-card h2 { color: white; margin-bottom: 2rem; }
.contact-method { margin-bottom: 2rem; display: flex; gap: 1.5rem; align-items: flex-start; }
.contact-method i { font-size: 1.5rem; color: var(--color-orange); background: rgba(255, 255, 255, 0.1); padding: 1rem; border-radius: 50%; }

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--color-blue); }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    outline: none;
    font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--color-red); }

.team-header { padding: 150px 2rem 50px; text-align: center; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem; max-width: 1200px; margin: 4rem auto 100px; }
.team-member { text-align: center; }
.member-image { width: 100%; aspect-ratio: 1; background: #e2e8f0; border-radius: 30px; margin-bottom: 1.5rem; overflow: hidden; position: relative; border: 2px solid transparent; transition: var(--transition); }
.team-member:hover .member-image { border-color: var(--color-red); transform: translateY(-10px); }
.member-image img { width: 100%; height: 100%; object-fit: cover; }
.member-info h3 { margin-bottom: 0.25rem; color: var(--color-blue); }
.member-info span { color: var(--color-red); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; }
.social-links { margin-top: 1rem; display: flex; justify-content: center; gap: 1rem; opacity: 0; transition: var(--transition); }
.team-member:hover .social-links { opacity: 1; }

/* --- Article & Service Headers --- */
.article-header, .service-header-v2 {
    padding: 220px 2rem 140px;
    background: var(--color-blue);
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.article-header h1, .service-header-v2 h1 {
    color: white !important;
    font-size: 3.5rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.article-header i, .service-header-v2 i {
    font-size: 4rem;
    color: var(--color-orange);
    margin-bottom: 2rem;
    display: block;
}

.article-header p, .service-header-v2 p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-weight: 600;
    opacity: 0.8;
}

/* ============================================
   FIX: Article container & sidebar alignment
   ============================================ */
.article-container, .detailed-content-wrapper {
    max-width: 1200px;
    margin: -60px auto 100px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
    align-items: start; /* ← evita que las columnas se estiren */
}

.article-main, .main-article {
    background: white;
    padding: 4rem;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
}

.article-sidebar, .sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 140px; /* More space from navbar */
    align-self: flex-start;
    padding-top: 0;
    margin-top: 4rem;
    z-index: 20; /* Ensure it stays above everything when scrolling */
}
/* ============================================ */

.article-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.article-content h2 {
    margin: 3rem 0 1.5rem;
    color: var(--color-blue);
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.8rem;
}

.article-image {
    width: 100%;
    height: 450px;
    border-radius: 30px;
    margin-bottom: 3rem;
    overflow: hidden;
}

.article-cta-box {
    background: #f8fafc;
    padding: 3rem;
    border-left: 5px solid var(--color-red);
    margin: 4rem 0;
}

/* --- Responsive Design & Mobile Menu --- */
@media (max-width: 992px) {
    .nav-container { padding: 1rem; }
    .menu-btn { display: block; margin-left: auto; }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: #0f172a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    nav ul.active { right: 0; }
    nav ul li { margin: 1rem 0; }
    nav ul li a { font-size: 1.4rem; padding: 0.5rem 2rem; display: block; }

    .hero h1 { font-size: 2.5rem; }
    .section-title h2 { font-size: 2rem; }

    .about-grid, .content-block, .service-item, .locations-grid, .article-container, .detailed-content-wrapper {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .article-sidebar, .sidebar-content {
        position: static !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .article-main, .main-article {
        padding: 2.5rem 1.5rem !important;
        border-radius: 25px !important;
    }

    .contact-section { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero { padding: 150px 1rem 80px; }
    .hero h1 { font-size: 2rem; }
    .logo { font-size: 1.2rem; }

    .services-grid { grid-template-columns: 1fr; }
    .article-header { padding: 160px 1.5rem 80px; }
    .article-header h1 { font-size: 1.8rem; }
    .article-container, .location-details { padding: 1.5rem; margin-top: -40px; top: auto; }

    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .location-hero h1 { font-size: 2rem; }
    .location-details { padding: 1.5rem; margin-top: -40px; }
}

/* --- Newsletter --- */
.newsletter {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-light) 100%);
    padding: 100px 2rem;
    color: white;
    text-align: center;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.newsletter-form input {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: none;
    width: 100%;
    max-width: 300px;
    font-family: inherit;
    font-size: 1rem;
}

/* Sticky Mobile Call Button */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-orange);
    color: var(--color-blue);
    text-align: center;
    padding: 1.2rem;
    font-weight: 800;
    font-size: 1.2rem;
    z-index: 2000;
    text-decoration: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    transition: 0.2s;
}

.mobile-call-btn:active { background: var(--color-red); color: white; }
.mobile-call-btn i { margin-right: 0.5rem; }

@media (max-width: 768px) {
    .mobile-call-btn { display: block; }
    body { padding-bottom: 60px; }
}