/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --company-primary-color: #4A90E2;
    --company-secondary-color: #2C3E50;
    --company-primary-transparent-2: rgba(74, 144, 226, 0.2);
    --company-primary-transparent-5: rgba(74, 144, 226, 0.5);
    --company-primary-transparent-8: rgba(74, 144, 226, 0.8);
    
    --text-color: #333;
    --text-dark: #2C3E50;
    --text-light: #666;
    --text-muted: #999;
    --border-color: #e0e0e0;
    --bg-gray: #f8f8f8;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    line-height: 1.6;
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header-logo {
    padding: 16px 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.brand-dot {
    width: 10px;
    height: 10px;
    background: var(--company-primary-color);
    border-radius: 50%;
}

.site-header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.rn-header-contact {
    display: none;
}

.rn-header-contact h3 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.rn-header-contact ul {
    list-style: none;
}

.rn-header-contact li {
    font-size: 14px;
    color: var(--text-light);
}

.rn-header-contact a {
    color: var(--company-primary-color);
    font-weight: 600;
}

.rn-site-header-nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.rn-site-header-nav-menu li a {
    padding: 12px 20px;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    display: block;
}

.rn-site-header-nav-menu li a:hover {
    color: var(--company-primary-color);
}

.rn-site-header-nav-menu li a.btn-nav {
    background: var(--company-primary-color);
    color: #fff;
    border-radius: 4px;
    margin-left: 8px;
}

.rn-site-header-nav-menu li a.btn-nav:hover {
    background: #3498DB;
    color: #fff;
}

.rn-site-header-nav-button {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
}

.rn-site-header-nav-burger {
    width: 20px;
    height: 14px;
    position: relative;
    display: block;
}

.rn-site-header-nav-burger::before,
.rn-site-header-nav-burger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-color);
}

.rn-site-header-nav-burger::before {
    top: 0;
}

.rn-site-header-nav-burger::after {
    bottom: 0;
}

.rn-site-header-nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.rn-site-header-nav-menu a:hover,
.rn-site-header-nav-menu a.active {
    color: var(--company-primary-color);
}

/* ============================================
   HERO
   ============================================ */
.site-home-page-hero {
    background: url('./assets/hero.svg') center/cover;
    background-color: #f0f4f8;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    padding: 80px 24px;
}

.site-home-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.85) 0%, rgba(52, 152, 219, 0.75) 100%);
}

.rn-home-header,
.rn-home-lead {
    position: relative;
    z-index: 2;
}

.rn-home-header {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.rn-home-header span {
    display: block;
}

.rn-home-lead {
    max-width: 700px;
    margin: 0 auto;
}

.site-cms-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.rn-home-lead-btn {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.rn-home-lead-btn-link {
    display: inline-block;
    padding: 14px 32px;
    background: var(--company-primary-color);
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
}

.rn-home-lead-btn-link:hover {
    background: #3498DB;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.rn-whatsapp-btn {
    background: #25D366;
    border: 2px solid #25D366;
}

.rn-whatsapp-btn:hover {
    background: #128C7E;
    border-color: #128C7E;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.rn-down-arrow-container {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.rn-down-arrow-container ul {
    list-style: none;
}

.rn-curve-on::before {
    content: '↓';
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 20px;
    line-height: 36px;
    text-align: center;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.rn-large-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
}

.rn-home-companies {
    margin-bottom: 80px;
}

.rn-underline-header {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.rn-underline-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--company-primary-color);
}

.rn-home-companies > .site-cms-text {
    text-align: center;
    max-width: 800px;
    margin: 40px auto 60px;
    color: var(--text-light);
    font-size: 1.125rem;
}

/* ============================================
   SERVICE GRID
   ============================================ */
.rn-flex-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.rn-flex-item {
    display: flex;
}

.rn-business {
    flex: 1;
    border-radius: 12px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
}

.rn-business:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-8px);
}

.rn-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px 24px;
}

.rn-image-wrapper {
    margin-bottom: 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    width: 120px;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.rn-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
}

.rn-business h3 {
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.rn-business .site-cms-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.rn-business hr {
    width: 40px;
    height: 3px;
    border: 0;
    background: var(--company-primary-color);
    margin: 0 auto 24px;
}

.rn-business-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--company-primary-color);
    border: 2px solid var(--company-primary-color);
    border-radius: 6px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.rn-business-btn:hover {
    background: #3478c6;
    border-color: #3478c6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

/* ============================================
   CALLOUTS & NEWS
   ============================================ */
.rn-home-callouts-news {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    margin-top: 60px;
}

.rn-home-callouts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.rn-home-business,
.rn-home-careers {
    background-size: cover;
    background-position: center;
    min-height: 320px;
    border-radius: 8px;
    padding: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.rn-home-business::before,
.rn-home-careers::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.rn-home-business {
    background-image: url('./assets/callout-partner.svg');
}

.rn-home-careers {
    background-image: url('./assets/callout-careers.svg');
}

.rn-home-business h2,
.rn-home-careers h2,
.rn-multiline-cta {
    position: relative;
    z-index: 2;
}

.rn-home-business h2,
.rn-home-careers h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.rn-home-business hr,
.rn-home-careers hr {
    width: 50px;
    height: 3px;
    border: 0;
    background: #fff;
    margin-bottom: 16px;
}

.rn-multiline-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.rn-cta-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.95;
}

.rn-cta-arrow {
    font-size: 24px;
    margin-left: 16px;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.rn-home-news {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
}

.rn-home-news h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.news-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.news-item:last-child {
    border-bottom: none;
}

.news-item b {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.news-item span {
    display: block;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.rn-site-footer {
    background: var(--bg-gray);
    border-top: 1px solid var(--border-color);
    padding: 48px 0;
    margin-top: auto;
}

.rn-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.rn-footer-logo-address {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.rn-footer-address {
    text-align: right;
    color: var(--text-light);
    font-size: 14px;
}

.rn-footer-address span {
    display: block;
}

.rn-site-footer hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 24px 0;
}

.rn-footer-contact-container {
    margin-bottom: 24px;
}

.rn-footer-contact {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.rn-footer-contact a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
}

.rn-footer-contact a:hover {
    color: var(--company-primary-color);
}

.rn-footer-disclaimer-links {
    display: flex;
    gap: 24px;
}

.rn-site-footer-disclaimer {
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (min-width: 1024px) {
    .rn-header-contact {
        display: block;
        border-left: 1px solid var(--border-color);
        padding-left: 24px;
    }
}

@media (max-width: 1023px) {
    .rn-flex-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rn-home-callouts-news {
        grid-template-columns: 1fr;
    }
    
    .rn-home-callouts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .rn-flex-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .site-header-nav {
        width: 100%;
    }
    
    .rn-site-header-nav-button {
        display: flex;
    }
    
    .rn-site-header-nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 16px;
        right: 16px;
        flex-direction: column;
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        padding: 8px;
        gap: 0;
    }
    
    .rn-site-header-nav-menu.is-open {
        display: flex;
    }
    
    .rn-site-header-nav-menu li {
        width: 100%;
    }
    
    .rn-site-header-nav-menu li a {
        width: 100%;
        border-radius: 4px;
    }
    
    .rn-site-header-nav-menu li a:hover {
        background: var(--bg-gray);
    }
    
    .rn-site-header-nav-menu li a.btn-nav {
        margin-left: 0;
        margin-top: 8px;
    }
    
    .rn-large-container {
        padding: 60px 20px;
    }
    
    .rn-footer-logo-address {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .rn-footer-address {
        text-align: center;
    }
    
    .rn-footer-contact {
        flex-direction: column;
        gap: 16px;
    }
    
    .rn-footer-disclaimer-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .site-home-page-hero {
        min-height: 480px;
        padding: 60px 20px;
    }
    
    .rn-home-header {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .site-cms-text {
        font-size: 1rem;
    }
}

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */
.service-hero {
    background: linear-gradient(135deg, var(--company-primary-color) 0%, var(--company-secondary-color) 100%);
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
}

.service-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    margin-top: 3rem;
}

.service-main {
    flex: 1;
}

.service-section {
    margin-bottom: 3rem;
}

.service-section h2 {
    font-size: 1.75rem;
    color: var(--company-secondary-color);
    margin-bottom: 1.5rem;
}

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

.service-feature {
    padding: 1.5rem;
    background: var(--bg-gray);
    border-radius: 8px;
    border-left: 4px solid var(--company-primary-color);
}

.service-feature h3 {
    font-size: 1.25rem;
    color: var(--company-primary-color);
    margin-bottom: 0.75rem;
}

.service-feature p {
    color: var(--text-color);
    line-height: 1.6;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--company-primary-color);
    font-weight: bold;
}

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

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--company-primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--company-secondary-color);
}

.issue-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.issue-item {
    padding: 1.25rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.issue-item h4 {
    font-size: 1.15rem;
    color: var(--company-secondary-color);
    margin-bottom: 0.5rem;
}

.task-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.task-item {
    padding: 0.75rem 1rem;
    background: var(--bg-gray);
    border-radius: 6px;
    font-size: 0.95rem;
}

.service-cta {
    background: linear-gradient(135deg, var(--company-primary-color) 0%, var(--company-secondary-color) 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

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

.service-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-whatsapp {
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: white;
    color: var(--company-primary-color);
}

.btn-primary:hover {
    background: var(--bg-gray);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--company-primary-color);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.service-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-card {
    background: var(--bg-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    font-size: 1.25rem;
    color: var(--company-secondary-color);
    margin-bottom: 1rem;
}

.sidebar-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.sidebar-card strong {
    display: block;
    margin-top: 1rem;
    color: var(--company-secondary-color);
}

.sidebar-card a {
    color: var(--company-primary-color);
    font-weight: 500;
}

.sidebar-card a:hover {
    text-decoration: underline;
}

.service-links {
    list-style: none;
    padding: 0;
}

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

.service-links a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.service-links a:hover {
    color: var(--company-primary-color);
}

.sidebar-warning {
    background: #fff3cd;
    border-left: 4px solid #ff9800;
}

.safety-notice {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

/* ============================================
   SERVICES OVERVIEW PAGE
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--company-primary-color) 0%, var(--company-secondary-color) 100%);
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.services-why-choose {
    margin: 4rem 0;
    text-align: center;
}

.services-why-choose h2 {
    font-size: 2rem;
    color: var(--company-secondary-color);
    margin-bottom: 3rem;
}

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

.why-item {
    padding: 2rem;
    background: var(--bg-gray);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-item h3 {
    font-size: 1.25rem;
    color: var(--company-primary-color);
    margin-bottom: 0.75rem;
}

.services-cta {
    background: linear-gradient(135deg, var(--company-primary-color) 0%, var(--company-secondary-color) 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 4rem;
}

.services-cta h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.services-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-main {
    flex: 1;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    text-align: center;
    padding: 2rem;
    background: var(--bg-gray);
    border-radius: 8px;
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-method h3 {
    font-size: 1.25rem;
    color: var(--company-secondary-color);
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-block;
    color: var(--company-primary-color);
    font-weight: 600;
    font-size: 1.15rem;
    margin: 0.5rem 0;
}

.contact-link:hover {
    text-decoration: underline;
}

.hours {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.contact-form-section {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
}

.contact-form-section h2 {
    font-size: 1.75rem;
    color: var(--company-secondary-color);
    margin-bottom: 1.5rem;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--company-secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--company-primary-color);
}

.btn-submit {
    padding: 14px 32px;
    background: var(--company-primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--company-secondary-color);
    transform: translateY(-2px);
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.contact-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-link {
    display: inline-block;
    color: var(--company-primary-color);
    font-weight: 500;
    margin-top: 0.5rem;
}

.sidebar-link:hover {
    text-decoration: underline;
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.pricing-tables {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.pricing-table {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
}

.pricing-table h2 {
    font-size: 1.75rem;
    color: var(--company-secondary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--company-primary-color);
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead {
    background: var(--company-secondary-color);
    color: white;
}

.pricing-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.pricing-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table tbody tr:hover {
    background: white;
}

.pricing-notes {
    margin: 3rem 0;
    padding: 2rem;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

.pricing-notes h2 {
    font-size: 1.5rem;
    color: var(--company-secondary-color);
    margin-bottom: 1rem;
}

.pricing-notes ul {
    list-style: none;
    padding-left: 0;
}

.pricing-notes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.pricing-notes li::before {
    content: "ℹ️";
    position: absolute;
    left: 0;
}

.pricing-cta {
    background: linear-gradient(135deg, var(--company-primary-color) 0%, var(--company-secondary-color) 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
}

.pricing-cta h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.pricing-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ============================================
   AREAS PAGE
   ============================================ */
.areas-intro {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.areas-section {
    margin: 3rem 0;
}

.areas-section h2 {
    font-size: 2rem;
    color: var(--company-secondary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.area-card {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid var(--company-primary-color);
}

.area-card.coming-soon {
    border-top-color: var(--text-muted);
    opacity: 0.8;
}

.area-card h3 {
    font-size: 1.5rem;
    color: var(--company-secondary-color);
    margin-bottom: 1rem;
}

.coming-soon-label {
    display: inline-block;
    background: var(--text-muted);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.area-list {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 1rem;
}

.area-list li {
    padding: 0.4rem 0;
    padding-left: 1rem;
    position: relative;
}

.area-list li::before {
    content: "📍";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.area-note {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-muted);
}

.expansion-section {
    margin: 4rem 0;
    text-align: center;
}

.expansion-section h2 {
    font-size: 2rem;
    color: var(--company-secondary-color);
    margin-bottom: 1.5rem;
}

.expansion-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.expansion-city {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--bg-gray);
    border-radius: 20px;
    font-weight: 500;
}

.expansion-note {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.check-availability {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: var(--bg-gray);
    border-radius: 12px;
}

.check-availability h2 {
    font-size: 2rem;
    color: var(--company-secondary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.check-availability > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.availability-method {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

.availability-method h3 {
    font-size: 1.25rem;
    color: var(--company-secondary-color);
    margin-bottom: 0.75rem;
}

.availability-method p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.partner-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--company-primary-color) 0%, var(--company-secondary-color) 100%);
    color: white;
    border-radius: 12px;
    text-align: center;
}

.partner-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.partner-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ============================================
   RESPONSIVE - NEW PAGES
   ============================================ */
@media (max-width: 1024px) {
    .service-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar,
    .contact-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .service-hero,
    .page-hero {
        padding: 60px 20px 40px;
    }
    
    .service-title,
    .page-title {
        font-size: 2rem;
    }
    
    .service-subtitle,
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .service-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        width: 100%;
    }
    
    .contact-methods,
    .availability-methods {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .area-list {
        columns: 1;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .task-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-table {
        padding: 1rem;
    }
    
    .pricing-table table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 0.5rem;
    }
}
