

:root {
    --bg-primary:    #ffffff;
    --bg-secondary:  #f5f5f5;
    --bg-card:       #ffffff;
    --bg-card-hover: #fefcf6;
    --bg-dark:       #062265;
    --text-primary:  #062265;
    --text-secondary: #555555;
    --text-muted:    #999999;
    --footer-dark-bg: #062265;
    --border-color:  #e6e6e6;
    --border-light:  rgba(255, 177, 0, 0.15);

    --z14cc: #ffb100;
    --z15af: #e09d00;
    --z1nl: linear-gradient(135deg, var(--z14cc), var(--z15af));
    --accent-glow: 0 8px 28px rgba(255, 177, 0, 0.28);

    --z3zo: 'Futura PT', 'Century Gothic', system-ui, sans-serif;
    --z5qz:    'Open Sans', system-ui, sans-serif;

    --z19hi: 64px;
    --z20ja: 42px;
    --z21o6: 28px;
    --fs-h4: 22px;
    --fs-h5: 18px;
    --z17aq: 15px;
    --fs-small: 13px;

    --z18bt:     700;
    --fw-semibold: 600;
    --fw-medium:   500;
    --fw-regular:  400;
    --fw-light:    300;

    --z6n4:   4px;
    --z7it:   8px;
    --z8bc:   12px;
    --z9p5:   16px;
    --z4qe: 100px;

    --transition:      all 0.35s ease;
    --transition-slow: all 0.6s ease;

    --z10ug: 0 2px 10px rgba(6, 34, 101, 0.06);
    --z11oo: 0 8px 28px rgba(6, 34, 101, 0.08);
    --z12zt: 0 16px 50px rgba(6, 34, 101, 0.10);
    --z13zz: 0 28px 72px rgba(6, 34, 101, 0.14);
    --shadow-neutral: 0 6px 24px rgba(0, 0, 0, 0.06);

    --nw83: 100px 0;
    --container-width: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--z5qz);
    font-size: var(--z17aq);
    font-weight: var(--fw-regular);
    line-height: 1.75;
    color: var(--text-secondary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; cursor: pointer; color: var(--z14cc); transition: var(--transition); }
a:hover { color: var(--z15af); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--z14cc); color: #fff; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--z3zo);
    font-weight: var(--z18bt);
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 18px;
    text-transform: none;
}
h1 { font-size: var(--z19hi); }
h2 { font-size: var(--z20ja); }
h3 { font-size: var(--z21o6); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p { font-size: var(--z17aq); line-height: 1.8; color: var(--text-secondary); margin: 0; }

.text-gradient { background: var(--z1nl); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-accent   { color: var(--z14cc); }
.text-accent-2 { color: var(--z15af); }
.text-dark     { color: var(--text-primary); }

.nw83    { padding: var(--nw83); position: relative; }
.nw83-sm { padding: 60px 0; }
.nw83-lg { padding: 130px 0; }
.suq72   { background-color: var(--bg-primary); }
.gexv { background-color: var(--bg-secondary); }
.bg-card             { background-color: var(--bg-card); }
.tlx8j     { background-color: var(--bg-dark); }
.bg-gradient-custom  { background: var(--z1nl); color: #fff; }

.tlx8j h1,.tlx8j h2,.tlx8j h3,
.tlx8j h4,.tlx8j h5,.tlx8j h6 { color: #fff; }
.tlx8j p,.tlx8j li,.tlx8j span:not(.badge) { color: rgba(255,255,255,0.7); }
.tlx8j .xvgh { color: #fff; }
.tlx8j .omf3e5  { color: rgba(255,255,255,0.55); }

.mb-10{margin-bottom:10px} .mb-20{margin-bottom:20px} .mb-30{margin-bottom:30px}
.mb-40{margin-bottom:40px} .mb-50{margin-bottom:50px} .mb-60{margin-bottom:60px}
.mt-10{margin-top:10px}    .mt-20{margin-top:20px}    .mt-30{margin-top:30px}
.mt-40{margin-top:40px}    .mt-50{margin-top:50px}
.gap-20{gap:20px} .gap-30{gap:30px} .gap-40{gap:40px}

.rzlz { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #fff; display: flex; align-items: center; justify-content: center; z-index: 99999; transition: opacity 0.4s ease, visibility 0.4s ease; }
.rzlz.loaded { opacity: 0; visibility: hidden; }
.xhtu3 { display: flex; gap: 10px; }
.bzhhu { width: 12px; height: 12px; border-radius: 50%; animation: anurPulse 0.7s ease-in-out infinite alternate; }
.bzhhu:nth-child(1) { background: var(--z14cc); animation-delay: 0s; }
.bzhhu:nth-child(2) { background: var(--text-primary); animation-delay: 0.15s; }
.bzhhu:nth-child(3) { background: var(--z15af); animation-delay: 0.3s; }
@keyframes anurPulse { 0% { transform: scale(0.65); opacity: 0.4; } 100% { transform: scale(1); opacity: 1; } }

.mmcg3 {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 34px;
    font-family: var(--z3zo); font-size: var(--fs-small);
    font-weight: var(--fw-semibold); text-transform: uppercase; letter-spacing: 1.2px;
    border-radius: var(--z4qe);
    border: 2px solid transparent;
    cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.dkzf7 { background: var(--z14cc); color: var(--text-primary); border-color: var(--z14cc); }
.dkzf7:hover { background: var(--text-primary); color: #fff; border-color: var(--text-primary); transform: translateY(-3px); }
.bf2fc { background: transparent; color: var(--text-primary); border-color: var(--text-primary); }
.bf2fc:hover { background: var(--text-primary); color: #fff; transform: translateY(-3px); }
.btn-link-custom { background: none; border: none; color: var(--z14cc); padding: 0; font-weight: var(--fw-semibold); display: inline-flex; align-items: center; gap: 6px; font-family: var(--z3zo); text-transform: uppercase; font-size: 13px; letter-spacing: 1px; }
.btn-link-custom:hover { color: var(--z15af); }
.btn-link-custom i { transition: transform 0.2s ease; }
.btn-link-custom:hover i { transform: translateX(5px); }

.xkpil { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: var(--transition); background: transparent; }
.xkpil.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(6,34,101,0.06); }
.mw26 { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.fj0jw { font-family: var(--z3zo); font-size: 28px; font-weight: var(--z18bt); color: var(--text-primary); letter-spacing: -0.5px; }
.fj0jw:hover { color: var(--text-primary); }
.fj0jw img { height: 46px; width: auto; }
.qkor1 { display: flex; align-items: center; gap: 32px; }
.qkor1 .nav-link { color: var(--text-secondary); font-family: var(--z5qz); font-size: var(--fs-small); font-weight: var(--fw-semibold); text-transform: uppercase; letter-spacing: 0.5px; padding: 6px 0; position: relative; transition: var(--transition); }
.qkor1 .nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 3px; background: var(--z14cc); border-radius: 2px; transition: width 0.3s ease; }
.qkor1 .nav-link:hover, .qkor1 .nav-link.active { color: var(--text-primary); }
.qkor1 .nav-link:hover::after, .qkor1 .nav-link.active::after { width: 100%; }
.grxu { margin-left: 10px; }
.gaysvv { display: none; flex-direction: column; justify-content: center; align-items: center; width: 42px; height: 42px; background: none; border: 2px solid var(--border-color); border-radius: var(--z7it); cursor: pointer; padding: 0; gap: 5px; }
.gaysvv .muwq7 { display: block; width: 20px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }

.vvzb7q {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden; padding-top: 100px;
    background: var(--bg-primary);
}
.vvzb7q::before {
    content: ''; position: absolute; top: 10%; right: -80px;
    width: 320px; height: 320px; border-radius: 50%;
    border: 40px solid rgba(255,177,0,0.08);
    z-index: 0;
}
.vvzb7q::after {
    content: ''; position: absolute; bottom: -60px; left: -60px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(255,177,0,0.06);
    z-index: 0;
}
.vkcb2e { position: relative; z-index: 2; }
.tcht   { position: relative; z-index: 2; }
.tcht img { border-radius: var(--z9p5); box-shadow: var(--z13zz); }
.qw8k {
    display: inline-block; color: var(--z14cc);
    font-size: 13px; font-weight: var(--z18bt); font-family: var(--z3zo);
    text-transform: uppercase; letter-spacing: 3px; margin-bottom: 16px;
    padding-left: 54px; position: relative;
}
.qw8k::before {
    content: ''; position: absolute; left: 0; top: 50%;
    width: 40px; height: 3px; background: var(--z14cc); border-radius: 2px;
    transform: translateY(-50%);
}
.owgug {
    font-family: var(--z3zo); font-size: var(--z19hi);
    font-weight: var(--z18bt); color: var(--text-primary);
    line-height: 1.15; margin-bottom: 22px;
}
.jeo7bf { font-size: 16px; color: var(--text-secondary); max-width: 520px; margin-bottom: 36px; line-height: 1.8; }
.vnwh { display: flex; flex-wrap: wrap; gap: 16px; }

.rnok { margin-bottom: 55px; }
.rnok.text-center { text-align: center; }
.rnok.text-center .kb30qb { max-width: 580px; margin: 0 auto; }
.hobb2 {
    display: inline-block; font-size: 12px; font-weight: var(--z18bt);
    color: var(--z14cc); text-transform: uppercase; letter-spacing: 3px;
    margin-bottom: 12px; font-family: var(--z3zo);
    padding-left: 52px; position: relative;
}
.hobb2::before {
    content: ''; position: absolute; left: 0; top: 50%;
    width: 38px; height: 3px; background: var(--z14cc); border-radius: 2px;
    transform: translateY(-50%);
}
.rnok.text-center .hobb2 { padding-left: 0; }
.rnok.text-center .hobb2::before { display: none; }
.rovxr5 { font-family: var(--z3zo); font-size: var(--z20ja); font-weight: var(--z18bt); color: var(--text-primary); line-height: 1.2; margin-bottom: 14px; }
.kb30qb { font-size: var(--z17aq); color: var(--text-secondary); line-height: 1.8; }

.watermark-text {
    font-family: var(--z3zo); font-size: 200px; font-weight: var(--z18bt);
    color: rgba(6, 34, 101, 0.03); position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    white-space: nowrap; user-select: none; pointer-events: none; z-index: 0;
    text-transform: uppercase; letter-spacing: 12px;
}

.vuq5o { background: var(--bg-card); border-radius: var(--z8bc); padding: 34px 26px; box-shadow: var(--z10ug); border: 1px solid var(--border-color); transition: var(--transition); height: 100%; }
.vuq5o:hover { box-shadow: var(--z12zt); transform: translateY(-8px); }
.rvbyb { width: 66px; height: 66px; background: rgba(255,177,0,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: var(--transition); }
.rvbyb i, .rvbyb svg { color: var(--z14cc); font-size: 28px; }
.vuq5o:hover .rvbyb { background: var(--z14cc); }
.vuq5o:hover .rvbyb i, .vuq5o:hover .rvbyb svg { color: #fff; }
.uh26op { font-family: var(--z3zo); font-size: 18px; margin-bottom: 10px; }
.fi5m  { font-size: var(--fs-small); color: var(--text-secondary); line-height: 1.7; }
.vuq5o-horizontal { display: flex; align-items: flex-start; gap: 18px; padding: 22px; background: var(--bg-card); border-radius: var(--z8bc); border-left: 3px solid var(--z14cc); box-shadow: var(--z10ug); transition: var(--transition); }
.vuq5o-horizontal:hover { box-shadow: var(--z11oo); transform: translateX(6px); }
.vuq5o-horizontal .rvbyb { flex-shrink: 0; margin-bottom: 0; }

.about-section { position: relative; }
.about-image { position: relative; }
.about-image .img-main { border-radius: var(--z9p5); box-shadow: var(--z12zt); }
.about-image .img-small { position: absolute; bottom: 20px; left: -24px; width: 42%; border-radius: var(--z8bc); box-shadow: var(--z11oo); border: 4px solid #fff; }
.experience-badge { position: absolute; bottom: 16px; right: -16px; background: var(--z14cc); color: var(--text-primary); padding: 20px 24px; border-radius: var(--z8bc); text-align: center; box-shadow: var(--z11oo); z-index: 2; }
.experience-badge .badge-number { font-family: var(--z3zo); font-size: 42px; font-weight: var(--z18bt); line-height: 1; display: block; }
.experience-badge .badge-text { font-size: 12px; font-weight: var(--fw-semibold); }
.about-list { list-style: none; padding: 0; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border-color); font-size: var(--z17aq); color: var(--text-secondary); }
.about-list li:last-child { border-bottom: none; }
.about-list li i { color: var(--z14cc); margin-top: 2px; flex-shrink: 0; }

.cadz { background: var(--bg-card); border-radius: var(--z8bc); overflow: hidden; box-shadow: var(--z10ug); border: 1px solid var(--border-color); transition: var(--transition); height: 100%; }
.cadz:hover { box-shadow: var(--z12zt); transform: translateY(-8px); }
.cadz .ctyhks { position: relative; overflow: hidden; height: 220px; }
.cadz .ctyhks img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cadz:hover .ctyhks img { transform: scale(1.08); }
.cadz .card-tag { position: absolute; top: 14px; left: 14px; background: var(--z14cc); color: var(--text-primary); font-size: 11px; font-weight: var(--z18bt); padding: 4px 14px; border-radius: var(--z4qe); text-transform: uppercase; }
.cadz .card-body { padding: 24px; }
.cadz .card-title { font-family: var(--z3zo); font-size: 18px; margin-bottom: 8px; }
.cadz .card-text  { font-size: var(--fs-small); color: var(--text-secondary); margin-bottom: 16px; }
.cadz .card-footer-custom { padding: 0 24px 24px; display: flex; align-items: center; justify-content: space-between; }

.sy1jdj { background: var(--bg-dark); padding: 80px 0; }
.counter-item { text-align: center; }
.counter-item .counter-icon { font-size: 48px; color: var(--z14cc); margin-bottom: 12px; display: block; }
.xvgh { font-family: var(--z3zo); font-size: 56px; font-weight: var(--z18bt); color: #fff; line-height: 1; display: block; margin-bottom: 8px; }
.omf3e5 { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.5); }

.eizx { background: var(--bg-card); border-radius: var(--z8bc); overflow: hidden; box-shadow: var(--z10ug); border: 1px solid var(--border-color); transition: var(--transition); text-align: center; }
.eizx:hover { box-shadow: var(--z12zt); transform: translateY(-8px); }
.eizx .qihi7 { position: relative; overflow: hidden; height: 280px; }
.eizx .qihi7 img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.eizx:hover .qihi7 img { transform: scale(1.05); }
.eizx .team-body { padding: 22px; }
.po4e { font-family: var(--z3zo); font-size: 19px; margin-bottom: 4px; }
.jlol9 { font-size: 14px; color: var(--z14cc); margin-bottom: 14px; }
.team-social { display: flex; justify-content: center; gap: 10px; }
.team-social a { width: 36px; height: 36px; background: var(--bg-secondary); color: var(--text-secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: var(--transition); }
.team-social a:hover { background: var(--z14cc); color: var(--text-primary); }

.ozc7 { background: var(--bg-card); border-radius: var(--z9p5); padding: 36px; border: 1px solid var(--border-color); box-shadow: var(--z10ug); transition: var(--transition); height: 100%; }
.ozc7:hover { box-shadow: var(--z11oo); }
.quote-icon   { color: var(--z14cc); font-size: 38px; margin-bottom: 16px; display: block; }
.aoxk   { font-style: italic; color: var(--text-secondary); line-height: 1.8; margin-bottom: 22px; font-size: 15px; }
.ozc7 .author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--border-color); }
.cbs9 { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 3px solid var(--z14cc); flex-shrink: 0; }
.vu5v8  { font-family: var(--z3zo); font-size: 16px; font-weight: var(--fw-semibold); margin-bottom: 2px; }
.dr2un  { font-size: 13px; color: var(--text-muted); }
.star-rating  { color: var(--z14cc); font-size: 14px; margin-bottom: 14px; }

.lhnh1h { background: var(--bg-card); border: 2px solid var(--border-color); border-radius: var(--z9p5); padding: 38px 30px; transition: var(--transition); position: relative; overflow: hidden; height: 100%; }
.lhnh1h.featured { border-color: var(--z14cc); }
.lhnh1h:hover { border-color: var(--z14cc); transform: translateY(-8px); box-shadow: var(--z12zt); }
.dcci { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 10px; }
.yznhcp { font-family: var(--z3zo); font-size: 48px; font-weight: var(--z18bt); color: var(--text-primary); line-height: 1; }
.plan-period { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.ec4h3m { list-style: none; padding: 0; margin: 0 0 28px; }
.ec4h3m li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--text-secondary); border-bottom: 1px solid var(--border-color); }
.ec4h3m li:last-child { border-bottom: none; }
.ec4h3m li i { color: var(--z14cc); font-size: 13px; flex-shrink: 0; }
.ec4h3m li.disabled { color: var(--text-muted); text-decoration: line-through; }
.pricing-badge { position: absolute; top: -1px; right: 24px; background: var(--z14cc); color: var(--text-primary); font-size: 11px; font-weight: var(--z18bt); padding: 6px 14px; border-radius: 0 0 var(--z6n4) var(--z6n4); text-transform: uppercase; }

.portfolio-item { position: relative; overflow: hidden; border-radius: var(--z8bc); }
.portfolio-item img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-item:hover img { transform: scale(1.07); }
.portfolio-overlay { color: #fff; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,34,101,0.9), transparent 60%); opacity: 0; transition: opacity 0.35s ease; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; border-radius: var(--z8bc); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat   { font-size: 12px; color: var(--z14cc); text-transform: uppercase; letter-spacing: 2px; }
.portfolio-title { font-family: var(--z3zo); font-size: 20px; color: #fff; }
.portfolio-overlay .serial-badge { color: rgba(255,255,255,0.85); -webkit-text-stroke: 0; font-size: inherit; opacity: 1; position: static; background: rgba(255,255,255,0.15); border-radius: 6px; display: inline-block; padding: 4px 12px; }

.olsw { background: var(--bg-card); border-radius: var(--z8bc); overflow: hidden; box-shadow: var(--z10ug); border: 1px solid var(--border-color); transition: var(--transition); height: 100%; }
.olsw:hover { box-shadow: var(--z12zt); transform: translateY(-6px); }
.olsw .ctyhks { height: 210px; overflow: hidden; }
.olsw .ctyhks img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.olsw:hover .ctyhks img { transform: scale(1.07); }
.olsw .card-body { padding: 24px; }
.pr8o { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.olsw .card-title { font-family: var(--z3zo); font-size: 18px; margin-bottom: 8px; }
.olsw .card-text { font-size: var(--fs-small); color: var(--text-secondary); }

.process-item { background: var(--bg-card); border-radius: var(--z8bc); padding: 32px 24px; box-shadow: var(--z10ug); border: 1px solid var(--border-color); transition: var(--transition); height: 100%; position: relative; }
.process-item:hover { box-shadow: var(--z12zt); transform: translateY(-8px); }
.fnsm { font-family: var(--z3zo); font-size: 72px; font-weight: var(--z18bt); color: rgba(255,177,0,0.08); position: absolute; top: 6px; right: 16px; line-height: 1; }
.step-icon   { font-size: 42px; color: var(--z14cc); margin-bottom: 14px; display: block; }
.lqr4a  { font-family: var(--z3zo); font-size: 19px; margin-bottom: 8px; }
.step-text   { font-size: var(--fs-small); color: var(--text-secondary); }

.faq-section .accordion-item { border: 1px solid var(--border-color); border-radius: var(--z8bc) !important; margin-bottom: 12px; overflow: hidden; }
.faq-section .accordion-button { font-family: var(--z3zo); font-weight: var(--fw-semibold); color: var(--text-primary); background: var(--bg-card); font-size: 17px; }
.faq-section .accordion-button:not(.collapsed) { color: var(--z14cc); background: var(--bg-secondary); box-shadow: none; }
.faq-section .accordion-body { background: var(--bg-secondary); color: var(--text-secondary); font-size: 15px; line-height: 1.8; }

.vgwll6 { background: var(--z14cc); padding: var(--nw83); text-align: center; position: relative; overflow: hidden; }
.cta-content { position: relative; z-index: 1; }
.rrlnrb { font-family: var(--z3zo); font-size: var(--z20ja); color: var(--text-primary); margin-bottom: 14px; }
.ykfd  { font-size: 17px; color: rgba(6,34,101,0.7); margin-bottom: 34px; }

.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-form input[type="email"] { flex: 1; min-width: 200px; padding: 13px 22px; border: 2px solid var(--border-color); border-radius: var(--z4qe); font-family: var(--z5qz); font-size: var(--z17aq); transition: border-color 0.3s ease; }
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--z14cc); }

.bwao .form-control { border: 2px solid var(--border-color); border-radius: var(--z8bc); padding: 13px 20px; font-family: var(--z5qz); font-size: var(--z17aq); transition: border-color 0.3s ease; }
.bwao .form-control:focus { outline: none; box-shadow: none; border-color: var(--z14cc); }
.bwao label { font-weight: var(--fw-semibold); color: var(--text-primary); margin-bottom: 6px; font-size: 15px; }

.oj654 { background: var(--footer-dark-bg); color: rgba(255,255,255,0.6); padding: 80px 0 0; }
.ydztf9 { margin-bottom: 40px; }
.kfhsa { font-family: var(--z3zo); font-size: 18px; font-weight: var(--fw-semibold); color: #fff; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 3px solid var(--z14cc); width: max-content; }
.iqef7 { list-style: none; padding: 0; }
.iqef7 li { margin-bottom: 10px; }
.iqef7 a { color: rgba(255,255,255,0.5); font-size: 14px; transition: var(--transition); }
.iqef7 a:hover { color: var(--z14cc); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 12px; }
.footer-contact li i { color: var(--z14cc); margin-top: 2px; flex-shrink: 0; }
.gh1r { display: flex; gap: 10px; margin-top: 20px; }
.gh1r a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 15px; transition: var(--transition); }
.gh1r a:hover { background: var(--z14cc); border-color: var(--z14cc); color: var(--text-primary); }
.nssb { margin-top: 40px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 13px; color: rgba(255,255,255,0.35); }

.cvp9 { position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px; background: var(--z14cc); color: var(--text-primary); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: var(--transition); box-shadow: var(--accent-glow); z-index: 999; }
.cvp9.visible { opacity: 1; visibility: visible; }
.cvp9:hover { background: var(--text-primary); color: #fff; transform: translateY(-4px); }

.decorative-circle {
    position: absolute; border-radius: 50%;
    border: 36px solid rgba(255,177,0,0.06);
    pointer-events: none; z-index: 0;
}
.decorative-circle.top-right { width: 300px; height: 300px; top: -60px; right: -60px; }
.decorative-circle.bottom-left { width: 220px; height: 220px; bottom: -40px; left: -40px; }

.line-divider { width: 50px; height: 3px; background: var(--z14cc); border-radius: 2px; margin: 14px auto; }
.line-divider.left { margin-left: 0; }
.serial-badge { font-family: var(--z3zo); font-size: 86px; font-weight: var(--z18bt); color: rgba(6,34,101,0.04); line-height: 1; }

.gallery-item { position: relative; overflow: hidden; border-radius: var(--z8bc); }
.gallery-item img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(6,34,101,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.35s ease; border-radius: var(--z8bc); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 36px; color: #fff; }

@media (max-width: 1199px) { :root { --z19hi: 50px; --z20ja: 36px; --z21o6: 24px; } .watermark-text { font-size: 120px; } }
@media (max-width: 991px) { :root { --z19hi: 40px; --z20ja: 30px; --nw83: 70px 0; } .qkor1 { display: none; } .gaysvv { display: flex; } .about-image .img-small { display: none; } .watermark-text { display: none; } .decorative-circle { display: none; } }
@media (max-width: 767px) { :root { --z19hi: 34px; --z20ja: 26px; --nw83: 55px 0; } .vnwh { flex-direction: column; } .xvgh { font-size: 42px; } .newsletter-form { flex-direction: column; } }

.tlx8j .qw8k { color: #fff; }
.tlx8j .hobb2 { color: var(--z14cc); }
.tlx8j .awm8 { color: rgba(255,255,255,0.55); }
.tlx8j .iqef7 a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.tlx8j .iqef7 a:hover { color: #fff; }
.tlx8j a:not(.mmcg3):not(.fj0jw) { color: rgba(255,255,255,0.8); }
.tlx8j a:not(.mmcg3):not(.fj0jw):hover { color: #fff; }

.text-force-light { color: #fff !important; }
.text-force-light-muted { color: rgba(255,255,255,0.7) !important; }
.text-force-light-soft { color: rgba(255,255,255,0.55) !important; }
.text-force-accent { color: var(--z14cc) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }
