:root {
  --primary: #f7a51b;
  --primary-dark: #d68a0f;
  --dark: #1a1a1a;
  --text: #4a4a4a;
  --light-bg: #f8f8f8;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
h1, h2, h3, h4, h5 { color: #222; font-weight: 700; line-height: 1.2; }
h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
.tm-page { overflow-x: hidden; }

.tm-header { background: #fff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 999; }
.uk-navbar-container { padding: 0; }
.uk-container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.uk-container-expand { max-width: 1400px; }
.uk-navbar { display: flex; justify-content: space-between; align-items: center; min-height: 80px; }
.uk-navbar-left, .uk-navbar-right { display: flex; align-items: center; }
.uk-navbar-nav { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; }
.uk-navbar-nav li a { color: #555; font-weight: 500; text-transform: uppercase; font-size: 14px; letter-spacing: 0.5px; padding: 10px 0; transition: color 0.2s; }
.uk-navbar-nav li a:hover, .uk-navbar-nav li.uk-active a { color: var(--primary); }
.uk-logo img { display: block; height: 42px; width: auto; }

.tm-header-mobile { background: #fff; padding: 12px 0; border-bottom: 1px solid #eee; }
.tm-header-mobile .uk-navbar { min-height: 60px; }
.uk-navbar-toggle { background: none; border: none; cursor: pointer; padding: 10px; }
.uk-navbar-toggle::before { content: ""; display: block; width: 24px; height: 2px; background: #333; box-shadow: 0 -7px 0 #333, 0 7px 0 #333; }
#mobile-menu { display: none; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: #fff; padding: 60px 30px 30px; box-shadow: -4px 0 20px rgba(0,0,0,0.1); z-index: 1000; transform: translateX(100%); transition: transform 0.3s; }
#mobile-menu.is-open { display: block; transform: translateX(0); }
#mobile-menu ul { list-style: none; padding: 0; margin: 0; }
#mobile-menu li a { display: block; padding: 12px 0; color: #333; border-bottom: 1px solid #eee; font-weight: 500; text-transform: uppercase; font-size: 14px; }
.uk-offcanvas-close { position: absolute; top: 15px; right: 15px; background: none; border: none; font-size: 30px; cursor: pointer; color: #333; }

.hero { position: relative; min-height: 600px; padding: 100px 0; display: flex; align-items: center; background: linear-gradient(135deg, #fff 0%, #fff5e6 100%); overflow: hidden; }
.hero-bg-text { position: absolute; top: 0; left: 0; right: 0; bottom: 0; font-size: 30vw; font-weight: 900; color: rgba(247,165,27,0.06); line-height: 0.85; letter-spacing: -0.05em; pointer-events: none; user-select: none; white-space: nowrap; overflow: hidden; z-index: 0; }
.hero-content { position: relative; z-index: 2; }
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; }
.hero-image { position: relative; z-index: 1; }

.section { padding: 80px 0; }
.section-dark { background: var(--dark); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-light { background: var(--light-bg); }
.section-accent { background: var(--primary); color: #fff; }
.section-accent h1, .section-accent h2 { color: #fff; }

.btn { display: inline-block; padding: 14px 32px; background: var(--primary); color: #fff !important; border-radius: 4px; font-weight: 700; text-transform: uppercase; font-size: 14px; letter-spacing: 1px; transition: all 0.2s; border: 2px solid var(--primary); cursor: pointer; }
.btn:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff !important; }
.btn-outline { background: transparent; color: var(--primary) !important; }
.btn-outline:hover { background: var(--primary); color: #fff !important; }
.btn-light { background: #fff; color: var(--primary) !important; border-color: #fff; }
.btn-light:hover { background: #f0f0f0; border-color: #f0f0f0; }

.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } .hero h1 { font-size: 2.2rem; } h1 { font-size: 2rem; } h2 { font-size: 1.6rem; } }

.card { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 2px 20px rgba(0,0,0,0.05); transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.card-icon { width: 64px; height: 64px; margin-bottom: 20px; }
.card h3 { margin-top: 0; }

.step { display: flex; gap: 25px; margin-bottom: 40px; align-items: flex-start; }
.step-number { flex-shrink: 0; width: 60px; height: 60px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; }
.step-content h3 { margin-top: 5px; margin-bottom: 10px; }

.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.form-field label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 14px; color: #333; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 12px 14px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; font-size: 15px; background: #fff; transition: border-color 0.2s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--primary); }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 400; }
.form-checkbox input { width: auto; margin-top: 3px; }
.alert { padding: 15px 20px; border-radius: 4px; margin-bottom: 20px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

.blog-list { display: grid; gap: 30px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .blog-list { grid-template-columns: 1fr; } }
.blog-item { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,0.05); }
.blog-item-content { padding: 25px; }
.blog-date { font-size: 13px; color: #999; text-transform: uppercase; letter-spacing: 1px; }
.blog-item h3 { font-size: 1.2rem; margin: 10px 0 15px; }
.blog-item h3 a { color: #222; }
.blog-item h3 a:hover { color: var(--primary); }

.page-header { padding: 100px 0 60px; text-align: center; background: linear-gradient(135deg, #fff 0%, #fff5e6 100%); }
.page-header h1 { font-size: 3.5rem; margin: 0; }

.cta-bar { background: var(--primary); color: #fff; padding: 60px 0; text-align: center; }
.cta-bar h2 { color: #fff; margin: 0 0 20px; }

.text-accent { color: var(--primary); }
.uk-list { list-style: none; padding: 0; }
hr { border: none; border-top: 1px solid #eee; margin: 40px 0; }



/* Responsive header visibility */
@media (min-width: 961px) {
  .tm-header-mobile { display: none !important; }
}
@media (max-width: 960px) {
  .tm-header { display: none !important; }
}

