/**
 * QATEX Tour Frontend Styles
 */

:root {
    --primary: #F39C12;
    --primary-dark: #E67E22;
    --secondary: #3498DB;
    --success: #27AE60;
    --danger: #E74C3C;
    --dark: #2C3E50;
    --light: #f8f9fa;
    --wa: #25D366;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: var(--dark); }
.qtx-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Typography */
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 15px; color: var(--dark); }
.section-subtitle { text-align: center; font-size: 1.2rem; color: #666; margin-bottom: 50px; }

/* Buttons */
.btn-primary {
    display: inline-block; background: var(--primary); color: white; padding: 15px 35px;
    border-radius: 50px; text-decoration: none; font-weight: bold; transition: all 0.3s;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(243,156,18,0.3); }

.btn-wa {
    display: inline-block; background: var(--wa); color: white; padding: 15px 35px;
    border-radius: 50px; text-decoration: none; font-weight: bold; transition: all 0.3s;
}
.btn-wa:hover { background: #128C7E; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(37,211,102,0.3); }

/* Responsive */
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .btn-primary, .btn-wa { display: block; width: 100%; text-align: center; }
}