:root {
    --primary-yellow: #ffd800;
    --primary-yellow-light: #fff5e1;
    --primary-accent: #ffd800;
    --bg-white: #FFFFFF;
    --text-main: #2D3436;
    --text-secondary: #636E72;
    --border-light: #DFE6E9;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--bg-white);
    color: var(--text-main);
    padding-top: 100px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    line-height: 1.6;
}

/* Header */
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 4rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo-container {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 110px !important;
    width: auto !important;
    max-width: none !important;
    transition: all 0.4s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

.header-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-item {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.nav-item:hover {
    color: var(--primary-accent);
    background: rgba(255, 216, 0, 0.1);
}

.cta-nav-btn, .nav-btn-yellow {
    background: var(--primary-yellow);
    color: #000 !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-nav-btn:hover, .nav-btn-yellow:hover {
    background: #e6c300;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 216, 0, 0.4);
}

@keyframes pulse-small {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.animate-pulse {
    animation: pulse-small 2s infinite ease-in-out;
}

/* Hero Panel - Light Theme (Group RTA) */
.hero-panel-light {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url('img/herooriginal.png') center center / cover no-repeat;
    display: flex;
    padding-top: 120px;
    padding-bottom: 2rem;
    overflow: hidden;
    image-rendering: high-quality;
}

/* Stronger white gradient blur for maximum text readability */
.hero-panel-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.9) 25%, 
        rgba(255, 255, 255, 0.4) 45%, 
        rgba(255, 255, 255, 0) 80%
    );
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-panel-light::before {
        background: linear-gradient(
            180deg, 
            rgba(255, 255, 255, 0.85) 0%, 
            rgba(255, 255, 255, 0.6) 50%, 
            rgba(255, 255, 255, 0.2) 100%
        );
    }
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.hero-content-new {
    max-width: 900px;
    margin-top: auto;
    margin-bottom: auto;
}

.hero-badge-light {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #fff9e6;
    color: #856404;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hero-heading-light {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-paragraph-light {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000000;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.hero-buttons-light {
    display: flex;
    gap: 1.5rem;
    margin-top: 6rem;
    margin-bottom: 0;
}

.btn-yellow-light {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-yellow);
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 216, 0, 0.4);
}

.btn-yellow-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 216, 0, 0.5);
}

.btn-white-light {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
}

.btn-white-light:hover {
    background: #f8f9fa;
    border-color: #aaa;
    transform: translateY(-3px);
}

/* 5 Cards Grid */
.hero-cards-grid {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    margin-top: 4rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-card {
    background: #fff;
    border-radius: 12px;
    padding: 0.6rem 1.2rem;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px; /* Minimal height for logos */
    flex: 0 0 auto;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-yellow);
}

.text-yellow {
    color: var(--primary-yellow);
}

.card-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.hero-card h3 {
    display: none;
}

.hero-card p {
    display: none;
}

.card-badge {
    display: none; /* Hide badges as per request for minimal look */
}

.badge-red {
    background: #ffe6e6;
    color: #d63031;
}

.badge-green {
    background: #e6f7e6;
    color: #27ae60;
}

.how-it-works-section {
    background: var(--bg-white);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.services-section {
    background: var(--bg-white);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.services-title {
    font-size: 2.22rem;
    color: var(--primary-accent);
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.services-desc {
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 2rem; /* Adjusted padding */
    transition: all 0.3s ease;
    text-align: left;
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--primary-yellow);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 60px; /* Slightly smaller */
    height: 60px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFB300 100%);
    color: var(--bg-white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 0; /* Removed margin-bottom */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(255, 216, 0, 0.2);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 60%);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(253, 203, 110, 0.15);
    border-color: var(--primary-yellow);
}

.service-card-header h3 {
    margin-bottom: 0; /* Align with icon */
    font-size: 1.3rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: #F8F9FA;
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.faq-title {
    font-size: 2.2rem;
    color: var(--primary-accent);
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.faq-subtitle {
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    font-size: 1.1rem;
}

.faq-contact-banner {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: var(--primary-yellow-light);
    border-radius: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--primary-yellow);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.faq-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-main);
    font-size: 1rem;
}

.faq-contact-icon {
    font-size: 1.4rem;
    color: var(--primary-accent);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    text-align: left;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    height: auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(34, 34, 34, 0.15);
}

.faq-question {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-arrow {
    font-size: 0.8rem;
    color: var(--primary-accent);
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    background: var(--bg-white);
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.contact-title {
    font-size: 2.22rem;
    color: var(--primary-accent);
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.contact-subtitle {
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
}

.contact-info-side {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.contact-info-item {
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
    border-color: var(--primary-accent);
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--bg-white);
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.icon-phone { background: linear-gradient(180deg, #34C759 0%, #28CD41 100%); }
.icon-mail { background: linear-gradient(180deg, #FFCC00 0%, #FFB300 100%); }
.icon-map { background: linear-gradient(180deg, #FF3B30 0%, #FF2D55 100%); }
.icon-clock { background: linear-gradient(180deg, #5856D6 0%, #007AFF 100%); }

.contact-info-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

.contact-info-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.contact-form-side {
    flex: 1;
    max-width: 600px;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

.form-title {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #ccc;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
}

.submit-btn {
    padding: 1.1rem 2.5rem;
    background: var(--primary-yellow);
    color: var(--text-main);
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 203, 110, 0.4);
}

/* Footer */
.main-footer {
    background: var(--bg-white);
    color: var(--text-main);
    padding: 3rem 0 2rem 0;
    border-top: 1px solid var(--border-light);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-yellow);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: var(--border-light);
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--primary-yellow);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-right {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-right a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: var(--primary-yellow);
}

/* Chatbot RTAXITO */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-yellow);
    color: #000;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 216, 0, 0.4);
    z-index: 9999;
    border: none;
    transition: all 0.3s ease;
}

.chatbot-container {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 380px;
    max-width: 90vw;
    background: var(--bg-white);
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.chatbot-container.active {
    display: flex;
    flex-direction: column;
}

.chatbot-header {
    background: var(--primary-yellow);
    color: #000;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-name {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.chatbot-close {
    background: transparent;
    border: none;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    opacity: 0.7;
}

.chatbot-close:hover {
    transform: scale(1.1);
    opacity: 1;
}

.chatbot-messages {
    padding: 15px;
    height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chatbot-message {
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.bot-message { background: #F1F2F6; align-self: flex-start; }
.user-message { background: #ffd800; color: #000; align-self: flex-end; }

.chatbot-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.chatbot-options button {
    background: #fff;
    border: 1px solid #DFE6E9;
    color: #2D3436;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.chatbot-options button:hover {
    background: #fff5e1;
    border-color: #ffd800;
    color: #000;
}

.chatbot-input {
    padding: 15px;
    border-top: 1px solid #ddd;
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
}

.chatbot-input button {
    background: var(--primary-yellow);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
}

/* Innovative Locations Section */
.locations-section {
    padding: 4rem 0;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.locations-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    z-index: 2;
    position: relative;
}

.city-switcher {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.city-btn {
    padding: 0.8rem 2rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.city-btn.active {
    background: var(--primary-yellow);
    color: #000;
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 25px rgba(255, 216, 0, 0.3);
}

.city-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.city-panel.active {
    display: grid;
}

.city-info-card {
    background: #fff;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.branch-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.branch-icon {
    width: 50px;
    height: 50px;
    background: #fff9e6;
    color: var(--primary-yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.branch-details h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: #000;
}

.branch-details p {
    color: #444;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.city-media {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.city-image-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 40px;
    overflow: hidden;
    background: #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.city-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    flex: 1;
    min-height: 280px;
    background: #eee;
}

.placeholder-cartagena {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    color: #888;
}

.placeholder-cartagena i {
    font-size: 3rem;
    color: #ddd;
}

.placeholder-cartagena h3 {
    color: #666;
}

.gallery-section { padding-top: 4rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.gallery-item { position: relative; border-radius: 25px; overflow: hidden; height: 350px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; opacity: 0; transition: 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Responsive Design */
@media (max-width: 1024px) {
    .main-header { padding: 1rem 2rem; }
    .hero-container { padding: 0 2rem; }
}

@media (max-width: 991px) {
    .mobile-menu-btn { display: block; }
    .main-header { height: 70px; padding: 0 8% !important; box-sizing: border-box; width: 100vw; left: 0; }
    .logo-container { margin-left: 0; }
    .mobile-menu-btn { padding: 8px; margin-right: 0; font-size: 1.5rem; }
    .header-links {
        position: fixed; top: 70px; left: 0; width: 100%; height: 0;
        background: #fff; flex-direction: column; overflow: hidden; transition: 0.4s;
    }
    .header-links.active { height: auto; padding: 1.5rem 0; }
    .nav-item { width: 100%; text-align: center; border-bottom: 1px solid #eee; padding: 0.8rem; }
    .hero-panel-light { padding-top: 70px; min-height: auto; }
    .city-panel { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    body { padding-top: 70px; }
    .hero-badge-light { margin-bottom: 0.8rem; padding: 0.4rem 0.8rem; font-size: 0.75rem; }
    .hero-heading-light { font-size: 1.8rem; width: 100%; line-height: 1.2; margin-bottom: 1rem; }
    .hero-paragraph-light { font-size: 1rem; line-height: 1.5; margin-bottom: 1.5rem; }
    .hero-panel-light { padding-top: 60px; padding-bottom: 2rem; min-height: auto; display: block; }
    .hero-container { padding: 0 1.2rem; }
    .hero-content-new { margin-bottom: 2rem; }
    .hero-buttons-light { flex-direction: column; gap: 0.8rem; width: 100%; }
    .hero-buttons-light .btn-yellow-light, 
    .hero-buttons-light .btn-white-light { width: 100%; padding: 0.9rem; font-size: 1rem; justify-content: center; }
    
    .hero-cards-grid { 
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        width: 100%;
        margin-top: 1.5rem;
    }
    .hero-card { 
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(5px);
        padding: 0.5rem;
        min-height: 55px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .card-logo { height: 35px; }
    .hero-card:last-child {
        grid-column: span 2;
        width: 60%;
        margin: 0 auto;
    }
    
    .services-section, .journey-section, .locations-section, .faq-section, .contact-section { 
        padding: 2.5rem 0; 
    }
    
    .services-title, .journey-title, .locations-section h3, .contact-title, .faq-title, .payments-title { 
        font-size: 1.6rem !important; 
        margin-bottom: 0.8rem;
    }
    
    .services-grid { gap: 1rem; }
    .journey-timeline { margin-bottom: 1.5rem; }
    .journey-header { margin-bottom: 1.5rem; }
    .journey-line { display: none !important; }

    .services-grid { grid-template-columns: 1fr !important; width: 100%; gap: 1.2rem; }
    .gallery-grid { grid-template-columns: 1fr !important; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }

    .contact-layout { flex-direction: column !important; align-items: center; width: 100%; }
    .contact-info-side, .contact-form-side { width: 100% !important; max-width: 100% !important; flex: none !important; }
    .form-row { grid-template-columns: 1fr !important; }
    
    .faq-grid { width: 100% !important; padding: 0 1rem; }
    
    .city-switcher { justify-content: flex-start; padding: 0 1rem 1rem 1rem; }
    .city-btn { padding: 0.7rem 1.5rem; font-size: 0.9rem; }
    .city-info-card { padding: 1.5rem !important; width: 100%; box-sizing: border-box; border-radius: 20px; }
    .branch-item { gap: 1rem; margin-bottom: 1.5rem; text-align: left; }
    .branch-icon { width: 40px; height: 40px; font-size: 1.2rem; }
    .branch-details h4 { font-size: 1rem; margin-bottom: 0.2rem; }
    .branch-details p { font-size: 0.85rem; }
    .map-wrapper { height: 250px !important; border-radius: 20px !important; min-height: auto; }
    .city-image-wrapper { height: 200px; border-radius: 20px; }
    .city-media { gap: 1rem; }
    
    .city-panel { grid-template-columns: 1fr !important; width: 100%; }
    .journey-steps { grid-template-columns: 1fr !important; width: 100%; }
    .journey-inner { width: 100%; padding: 0 1rem !important; }
    .journey-cta { flex-direction: column; text-align: center; padding: 1.5rem !important; }
}

@media (max-width: 480px) {
    .hero-heading-light { font-size: 1.8rem; }
    .hero-container, .journey-inner, .locations-container { padding: 0 1rem; }
    .map-wrapper { height: 280px !important; }
    .chatbot-toggle {
        bottom: 30px !important;
        right: 35px !important;
        width: 60px !important;
        height: 60px !important;
    }
}

/* ============================================
   JOURNEY SECTION (Como Funciona + Descarga)
   ============================================ */
.journey-section {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 4rem 0;
    overflow: hidden;
    border-top: 4px solid var(--primary-yellow);
}
.journey-bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.journey-shape { position: absolute; border-radius: 50%; opacity: 0.08; animation: journeyPulse 6s ease-in-out infinite; }
.journey-shape-1 { width: 500px; height: 500px; background: var(--primary-yellow); top: -150px; left: -150px; }
.journey-shape-2 { width: 350px; height: 350px; background: #e94560; top: 50%; right: -100px; }
@keyframes journeyPulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.1);} }
.journey-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.journey-header { text-align: center; margin-bottom: 5rem; }
.journey-image {
    max-height: 85px; width: auto; background: #fff; padding: 0.8rem 1.5rem; border-radius: 12px;
    border: 3px solid rgba(255, 255, 255, 0.9); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem; object-fit: contain;
}
.journey-title { font-size: 3rem; font-weight: 900; color: #fff; margin-bottom: 1rem; line-height: 1.1; }
.journey-highlight { color: var(--primary-yellow); }
.journey-subtitle { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 620px; margin: 0 auto; line-height: 1.7; }
.journey-timeline { position: relative; margin-bottom: 5rem; }
.journey-line { position: absolute; top: 45px; left: 5%; right: 5%; height: 3px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.journey-line-fill { height: 100%; width: 0; background: var(--primary-yellow); transition: width 1.5s ease-out; }
.journey-line-fill.animated { width: 100%; }
.journey-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.journey-step { 
    display: flex; flex-direction: column; align-items: center; text-align: center; 
    opacity: 0; transform: translateY(30px); transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.journey-step.visible { opacity: 1; transform: translateY(0); }
.journey-step:nth-child(1){transition-delay:0.1s;}
.journey-step:nth-child(2){transition-delay:0.25s;}
.journey-step:nth-child(3){transition-delay:0.4s;}
.journey-step:nth-child(4){transition-delay:0.55s;}
.journey-step-icon { position: relative; width: 90px; height: 90px; margin-bottom: 1.5rem; }
.journey-icon-inner { 
    position: absolute; inset: 8px; background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFB300 100%); 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    box-shadow: 0 8px 25px rgba(255,216,0,0.35); 
}
.journey-icon-inner i { font-size: 1.6rem; color: #1a1a2e; }
.journey-step-num { 
    position: absolute; bottom: -4px; right: -4px; background: #0f3460; color: var(--primary-yellow); 
    font-size: 0.7rem; font-weight: 900; width: 26px; height: 26px; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; border: 2px solid var(--primary-yellow); 
}
.journey-step-body h3 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.journey-step-body p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.6; }
.journey-cta { 
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 20px; padding: 2rem 3rem; display: flex; align-items: center; 
    justify-content: space-between; gap: 2rem; flex-wrap: wrap; 
}
.journey-cta-text { display: flex; align-items: center; gap: 0.8rem; color: #fff; font-size: 1.1rem; font-weight: 600; }
.journey-cta-text i { color: var(--primary-yellow); font-size: 1.4rem; }
.journey-download-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.journey-app-btn { 
    display: flex; align-items: center; gap: 0.8rem; background: var(--primary-yellow); 
    color: #1a1a2e; text-decoration: none; padding: 0.85rem 1.8rem; border-radius: 14px; 
    font-weight: 700; font-size: 0.9rem; 
}
.journey-app-btn i { font-size: 1.6rem; }
.journey-app-btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }

@media (max-width: 900px) { .journey-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .journey-steps { grid-template-columns: 1fr; } }
