/* TMS Shared Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #FEF2F2;
    font-weight: 400;
}

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

/* Header */
header {
    background: rgba(254, 242, 242, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #EF4444, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: #C2410C;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #EF4444;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #EF4444;
}

.book-now-btn {
    background: linear-gradient(135deg, #EF4444, #F59E0B);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.4);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-white {
    background: white;
}

.section-light {
    background: #FFFBEB;
}

.page-content {
    margin-top: 80px;
    padding: 80px 0;
}

h1 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #EF4444, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #EF4444;
    margin-bottom: 24px;
    line-height: 1.2;
}

h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #EF4444;
    margin-bottom: 16px;
}

/* Content page styles */
.content-page {
    margin-top: 80px;
}

.content-page .page-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: linear-gradient(rgba(254, 242, 242, 0.9), rgba(255, 251, 235, 0.9));
}

.content-page .page-hero p.subtitle {
    font-size: 1.2rem;
    color: #C2410C;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

.content-body {
    padding: 60px 0;
    background: white;
}

.content-body .container {
    max-width: 900px;
}

.content-body h2 {
    margin-top: 48px;
    margin-bottom: 16px;
    font-size: 1.8rem;
    text-align: left;
    background: none;
    -webkit-text-fill-color: #EF4444;
}

.content-body h3 {
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.content-body p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 1.05rem;
}

.content-body ul, .content-body ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.content-body li {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 8px;
    font-weight: 500;
}

.content-body strong {
    color: #1f2937;
}

/* Comparison table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.95rem;
}

.comparison-table th {
    background: linear-gradient(135deg, #FEF2F2, #FFFBEB);
    color: #EF4444;
    padding: 16px;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid #F59E0B;
}

.comparison-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    color: #4a4a4a;
    font-weight: 500;
}

.comparison-table tr:hover {
    background: #FEF2F2;
}

/* Info box */
.info-box {
    background: #FFFBEB;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #F59E0B;
    margin: 24px 0;
}

.info-box p {
    color: #C2410C;
    margin-bottom: 0;
}

/* FAQ styles (for dedicated FAQ page) */
.faq-category {
    margin-bottom: 48px;
}

.faq-category h2 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #F59E0B;
}

.faq-item {
    background: white;
    padding: 28px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.08);
    border-left: 4px solid #F59E0B;
    margin-bottom: 20px;
}

.faq-item h3 {
    color: #EF4444;
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 700;
}

.faq-item p {
    color: #4a4a4a;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 0;
}

/* CTA banner */
.cta-banner {
    background: linear-gradient(135deg, #7C1D1D 0%, #991B1B 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta-banner h2 {
    color: white;
    -webkit-text-fill-color: white;
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-white-btn {
    background: white;
    color: #EF4444;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.cta-white-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

/* Primary button */
.primary-btn {
    background: linear-gradient(135deg, #EF4444, #F59E0B);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(239, 68, 68, 0.4);
}

/* Footer */
footer {
    background: #7C2D12;
    color: white;
    padding: 50px 0 30px;
    text-align: center;
}

footer p {
    opacity: 0.9;
    line-height: 1.7;
    font-weight: 500;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-credentials {
    margin-top: 12px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Guide hub cards */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.guide-card {
    background: white;
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.08);
    border-top: 4px solid #F59E0B;
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.12);
}

.guide-card h3 {
    margin-bottom: 12px;
}

.guide-card p {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 500;
}

.guide-card a {
    color: #EF4444;
    font-weight: 700;
    text-decoration: none;
}

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

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .content-body h2 { font-size: 1.5rem; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(254, 242, 242, 0.98);
        flex-direction: column;
        padding: 16px 24px;
        gap: 0;
    }
    .nav-links.active { display: flex; }
    .nav-links a { padding: 12px 0; display: block; }
    .nav-toggle { display: block; }
    .guide-grid { grid-template-columns: 1fr; }
    .comparison-table { font-size: 0.85rem; }
    .comparison-table th, .comparison-table td { padding: 10px 8px; }
}

/* Pulse animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
