@font-face {
    font-family: "bootstrap-icons";
    src: url("bootstrap5.3.8/bootstrap-icons.woff2") format("woff2"),
         url("bootstrap5.3.8/bootstrap-icons.woff") format("woff");
    font-display: swap;
}

:root {
    --tt-yellow: #FBC11A;
    --tt-yellow-dark: #E0A800;
    --tt-dark: #0F1721;
    --tt-black: #101820;
    --tt-muted: #6c757d;
    --tt-soft: #F5F5F7;
}

html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1a1f2c;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-weight: 800; letter-spacing: -.01em; }
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 { font-weight: 800; letter-spacing: -.02em; }
.eyebrow { color: var(--tt-yellow); font-weight: 700; text-transform: none; letter-spacing: .02em; }

.grecaptcha-badge { visibility: hidden; }
.navbar {
	flex-wrap: nowrap;
}
/* ===== Buttons ===== */
.btn-yellow {
    background: var(--tt-yellow);
    border-color: var(--tt-yellow);
    color: #111;
    font-weight: 600;
    border-radius: 999px;
    padding: .75rem 1.4rem;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn-yellow:hover {
    background: var(--tt-yellow-dark);
    border-color: var(--tt-yellow-dark);
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(251,193,26,.35);
}
.btn-dark-pill {
    background: #0c1117;
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
    padding: .75rem 1.4rem;
    border: 1px solid #0c1117;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn-dark-pill:hover {
    background: var(--tt-yellow);
    border-color: var(--tt-yellow);
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.btn-outline-pill {
    background: transparent;
    color: #111;
    font-weight: 600;
    border-radius: 999px;
    padding: .75rem 1.4rem;
    border: 1.5px solid #111;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn-outline-pill:hover {
    background: #111;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

/* ===== Top bar ===== */
.top-bar {
    background: var(--tt-dark);
    color: #cfd6df;
    font-size: .9rem;
    padding: .55rem 0;
}
.top-bar a { color: #cfd6df; text-decoration: none; }
.top-bar a:hover { color: var(--tt-yellow); }
.top-bar .bi { color: var(--tt-yellow); margin-right: .4rem; }
.top-bar .social a { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; border: 1px solid #2a3441; margin-left: .3rem; }
.top-bar .social a .bi { color: #cfd6df; margin: 0; }
.top-bar .social a:hover { background: var(--tt-yellow); border-color: var(--tt-yellow); color: #111; }
.top-bar .social a:hover .bi { color: #111; }

/* ===== Navbar ===== */
.nav-wrap {
    background: var(--tt-dark);
    position: sticky;
    top: 0;
    z-index: 1030;
}
.navbar-brand img { height: 70px; }
.nav-link-tt {
    color: #fff !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 1.2rem 1rem !important;
    font-size: .95rem;
}
.nav-link-tt:hover { color: var(--tt-yellow) !important; }

/* ===== Hero ===== */
.hero { position: relative; }
/* Menu height: depends on logo size (mobile) and top-bar visibility (lg+) */
:root { --menu-h: 72px; }                                    /* <768px: nav only, 56px logo */
@media (min-width: 769px) { :root { --menu-h: 86px; } }      /* md: nav only, 70px logo */
@media (min-width: 992px) { :root { --menu-h: 134px; } }     /* lg+: top-bar + nav */
.hero .carousel-item {
    height: calc(100svh - var(--menu-h));
    min-height: 500px;
    background-size: cover; background-position: center;
}
.hero .carousel-item .slide-inner {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(90deg, rgba(15,23,33,.78) 0%, rgba(15,23,33,.4) 60%, rgba(15,23,33,0) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1,
.hero .hero-h2 {
    font-size: clamp(2.2rem, 5.5vw, 4.6rem);
    line-height: 1.05;
    color: #fff;
    font-weight: 900;
    margin: 0;
}
.hero h1 .accent,
.hero .hero-h2 .accent {
    background: var(--tt-yellow);
    color: #111;
    padding: 0 .35em;
    display: inline-block;
    border-radius: 6px;
}
.hero p.lead { color: #e5e8ec; font-size: 1.1rem; }
.hero .eyebrow { color: var(--tt-yellow); letter-spacing: .15em; text-transform: uppercase; font-size: .9rem; }
.carousel-indicators [data-bs-target] {
    width: 36px; height: 4px; border-radius: 2px;
    background: rgba(255,255,255,.4); border: none;
}
.carousel-indicators .active { background: var(--tt-yellow); }

/* ===== About ===== */
.about-img {
    overflow: hidden;
}
.about-img img { width: 100%; height: auto; display: block; }
.badge-experience {
    position: absolute;
    left: 50px;
    bottom: 50px;
    background: var(--tt-yellow);
    color: #111;
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
    display: flex;
    align-items: center;
    gap: .8rem;
}
.badge-experience .num { font-size: 2rem; font-weight: 900; line-height: 1; }
.call-box {
    display: inline-flex; align-items: center; gap: .9rem;
    background: #fff; border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    padding: .35rem .6rem;
}
.call-box .icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--tt-yellow); color: #111;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
}
.call-box span { color: var(--tt-muted); font-size: .85rem; display: block; }
.call-box strong a { color: #111; text-decoration: none; font-size: 1.15rem; }

/* ===== Pricing ===== */
.pricing-section {
    background: linear-gradient(180deg, #0d1219 0%, #1a1305 60%, #0d1219 100%);
    color: #fff;
    position: relative;
}
.pricing-section h2 { color: #fff; }
.price-card {
    border-radius: 22px;
    padding: 2.2rem 1.8rem;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(251,193,26,.18);
    color: #e9eef5;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(251,193,26,.12); }
.price-card .icon-wrap img { width: 64px; height: 64px; object-fit: contain; }
.price-card h3 { color: #fff; font-size: 1.35rem; margin-top: 1rem; }
.price-card p.muted { color: #9aa4b2; font-size: .92rem; }
.price-card ul { list-style: none; padding: 0; margin: 1.25rem 0; }
.price-card ul li {
    display: flex; justify-content: space-between; align-items: center;
    padding: .7rem 0; border-bottom: 1px dashed rgba(255,255,255,.12);
    font-size: .98rem;
}
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li strong { color: #fff; font-weight: 700; }
.price-card.featured {
    background: var(--tt-yellow);
    color: #111;
    border-color: var(--tt-yellow);
    box-shadow: 0 30px 60px rgba(251,193,26,.25);
}
.price-card.featured h3 { color: #111; }
.price-card.featured p.muted { color: rgba(0,0,0,.65); }
.price-card.featured ul li { border-bottom-color: rgba(0,0,0,.18); }
.price-card.featured ul li strong { color: #111; }

/* ===== Services / steps ===== */
.step-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.6rem;
    box-shadow: 0 10px 30px rgba(15,23,33,.06);
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15,23,33,.10); }
.step-card .head {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem;
}
.step-card .icon-square {
    width: 64px; height: 64px;
    border-radius: 14px;
    border: 1px dashed #d6dbe1;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--tt-yellow);
    font-size: 1.7rem;
    background: #fffaea;
}
.step-card .line { flex: 1; height: 1px; background: #e7eaee; }
.step-card .num {
    font-size: 2.6rem; font-weight: 900;
    color: #eef0f3;
}
.step-card h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.step-card p { color: var(--tt-muted); margin: 0; font-size: .96rem; }

/* ===== Counter ===== */
.counter-section {
    background: var(--tt-dark) url('photos/coutner-bg.png') center/cover no-repeat;
    color: #fff;
    position: relative;
}
.counter-section::before { content: ""; position: absolute; inset: 0; background: rgba(15,23,33,.78); }
.counter-wrap {
    position: relative; z-index: 2;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    padding: 2.5rem 1rem;
}
.counter-item { text-align: center; padding: 1rem; }
.counter-item img { width: 56px; height: 56px; object-fit: contain; margin-bottom: .8rem; }
.counter-item .num { font-size: 3rem; font-weight: 900; line-height: 1; }
.counter-item .num .suffix { color: var(--tt-yellow); }
.counter-item p { margin: .4rem 0 0; color: #c8cdd4; font-size: .95rem; }

/* ===== Booking ===== */
.booking-section { background: #fff; }
.booking-feature {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.2rem 0; border-bottom: 1px dashed #e3e6ea;
}
.booking-feature:last-child { border-bottom: none; }
.booking-feature img { width: 56px; height: 56px; object-fit: contain; }
.booking-feature h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.booking-feature p { color: var(--tt-muted); margin: 0; font-size: .96rem; }
.booking-form-card {
    background: #fff;
    border-radius: 22px;
    padding: 2.2rem;
    box-shadow: 0 30px 60px rgba(15,23,33,.10);
}
.booking-form-card .form-label { font-weight: 600; font-size: .9rem; }
.booking-form-card .form-control,
.booking-form-card .form-select {
    border-radius: 999px;
    padding: .8rem 1.2rem;
    border: 1px solid #e3e6ea;
    background: #fafbfc;
}
.booking-form-card textarea.form-control { border-radius: 18px; }
.booking-form-card .form-control:focus,
.booking-form-card .form-select:focus {
    border-color: var(--tt-yellow);
    box-shadow: 0 0 0 .2rem rgba(251,193,26,.18);
}
.booking-form-card .btn-yellow { width: 100%; padding: 1rem; font-size: 1.05rem; }

/* ===== Testimonials ===== */
.testimonials-section {
    background: var(--tt-soft);
    background-image: url('photos/testimonial-bg.png');
    background-size: cover;
    background-position: center;
}
.testi-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(15,23,33,.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Stack all testi slides in same grid cell so .carousel-inner sizes to the tallest slide */
#testiCarousel .carousel-inner { display: grid; grid-template-columns: 1fr; }
#testiCarousel .carousel-item {
    grid-row: 1; grid-column: 1;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transform: none !important;
    transition: opacity .45s ease, visibility .45s ease;
    pointer-events: none;
}
#testiCarousel .carousel-item.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.testi-card .head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.testi-card .head img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.testi-card h6 { margin: 0 0 .25rem; font-weight: 700; }
.testi-card .stars { color: var(--tt-yellow); font-size: .95rem; }
.testi-card p { color: #4a5260; margin: 0; font-size: .98rem; line-height: 1.6; }

/* ===== FAQ ===== */
.accordion-item-tt {
    border: none;
    border-bottom: 1px solid #e7eaee !important;
    background: transparent;
}
.accordion-item-tt .accordion-button {
    background: transparent;
    font-weight: 700;
    color: #111;
    padding: 1.2rem 0;
    box-shadow: none;
    font-size: 1.05rem;
}
.accordion-item-tt .accordion-button:not(.collapsed) {
    color: var(--tt-yellow-dark);
    background: transparent;
}
.accordion-item-tt .accordion-button:focus { box-shadow: none; }
.accordion-item-tt .accordion-body { padding: 0 0 1.2rem; color: var(--tt-muted); font-size: .98rem; }

/* ===== CTA ===== */
.cta-section {
    background: var(--tt-yellow);
    color: #111;
    position: relative;
    overflow: hidden;
}
.cta-section h2,
.cta-section .cta-heading { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin: 0; font-weight: 800; line-height: 1.1; letter-spacing: -.01em; }

/* ===== Footer ===== */
footer.site-footer {
    background: var(--tt-dark);
    color: #c8cdd4;
    padding-top: 4rem;
}
footer.site-footer h2 { color: #fff; font-size: 1.25rem; margin-bottom: 1.2rem; }
footer.site-footer a { color: #c8cdd4; text-decoration: none; }
footer.site-footer a:hover { color: var(--tt-yellow); }
footer.site-footer .f-logo img { height: 70px; }
footer.site-footer .f-contact li {
    display: flex; align-items: center; gap: .8rem;
    padding: .5rem 0;
}
footer.site-footer .f-contact .bi {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(251,193,26,.12); color: var(--tt-yellow);
    display: inline-flex; align-items: center; justify-content: center;
}
footer.site-footer .footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.06); color: #fff;
    margin-left: .3rem;
    transition: all .2s ease;
}
footer.site-footer .footer-social a:hover { background: var(--tt-yellow); color: #111; }
footer.site-footer .copyright {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.2rem 0;
    margin-top: 2rem;
    font-size: .9rem;
}
footer.site-footer .copyright a { color: #fff; }

/* ===== Sections ===== */
section { padding: 5rem 0; }
@media (max-width: 768px) {
    section { padding: 3.5rem 0; }
    .navbar-brand img { height: auto; width: 95px; }
    .badge-experience { left: 0; bottom: 0; padding: 1rem 1.2rem; }
    /* Reduce gutters that overflow viewport on small screens */
    .row.g-5, .row.g-4 { --bs-gutter-x: 1.5rem; }
}
