/* ═══════════════════════════════════════════
   1341 Floral Designs — Shared Dark Theme
   Applied to all inner pages
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

/* ── Global dark base ── */
html { scroll-behavior: smooth; }
body {
    background: #0a0a0a !important;
    color: #ffffff !important;
    font-family: 'Jost', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ── Announce bar ── */
.t-announce {
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: rgba(255,255,255,0.4);
}
.t-announce a { color: rgba(255,255,255,0.75); transition: color .2s; }
.t-announce a:hover { color: #fff; }
.t-announce .sep { opacity: 0.2; }

/* ── Header ── */
.t-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.t-header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    height: 80px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}
.t-logo {
    display: flex;
    justify-content: center;
    text-decoration: none;
}
.t-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}
.t-nav {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}
.t-nav a {
    font-size: 12.5px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.02em;
    transition: color .2s;
    white-space: nowrap;
}
.t-nav a:hover,
.t-nav a.active { color: #fff; }
.t-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}
.t-cta {
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 9999px;
    padding: 9px 22px;
    font-size: 12.5px;
    font-weight: 500;
    color: #fff;
    background: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all .2s;
    display: inline-block;
}
.t-cta:hover {
    border-color: rgba(255,255,255,0.4);
    background: #fff;
    color: #0a0a0a;
}
.t-nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 6px;
    color: #fff;
    padding: 7px 11px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

/* ── Mobile nav ── */
.t-mobile-nav {
    display: none;
    background: #111;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 8px 24px 16px;
    position: sticky;
    top: 80px;
    z-index: 99;
}
.t-mobile-nav.open { display: block; }
.t-mobile-nav a {
    display: block;
    padding: 11px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    text-decoration: none;
}
.t-mobile-nav a:last-child { border-bottom: none; }

/* ── Page hero (inner pages) ── */
.t-page-hero {
    padding: 80px 48px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.t-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(160,100,255,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(200,75,17,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.t-page-hero-content { position: relative; z-index: 1; }
.t-page-eyebrow {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    display: block;
    margin-bottom: 14px;
}
.t-page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}
.t-page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Section defaults ── */
.t-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.t-section-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
}
.t-section-eyebrow {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 10px;
    display: block;
}
.t-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 40px;
}

/* ── Override old styles.css light bg ── */
body,
.section,
.section-alt { background: #0a0a0a !important; }

/* old announce bar */
.announce {
    background: rgba(255,255,255,0.03) !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
    color: rgba(255,255,255,0.4) !important;
    box-shadow: none !important;
}
.announce a { color: rgba(255,255,255,0.75) !important; }
.announce span { opacity: 0.3; }

/* old site-header */
.site-header {
    background: rgba(10,10,10,0.92) !important;
    box-shadow: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* old nav */
.main-nav,
.nav-inner { background: #111 !important; border-color: rgba(255,255,255,0.07) !important; }
.nav-inner a, .main-nav a { color: rgba(255,255,255,0.6) !important; }
.nav-inner a:hover, .nav-inner a.active,
.main-nav a:hover, .main-nav a.active { color: #fff !important; background: transparent !important; }
.nav-drop { background: #1a1a1a !important; border-color: rgba(255,255,255,0.08) !important; }
.nav-drop a { color: rgba(255,255,255,0.55) !important; }
.nav-drop a:hover { color: #fff !important; }

/* USP strip */
.usp-strip { background: rgba(255,255,255,0.02) !important; box-shadow: none !important; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.usp-item .usp-text strong { color: #fff !important; }
.usp-item .usp-text span { color: rgba(255,255,255,0.45) !important; }

/* price blocks */
.price-block { background: rgba(255,255,255,0.03) !important; border-color: rgba(255,255,255,0.08) !important; }
.price-name { color: #fff !important; }
.price-row { border-bottom-color: rgba(255,255,255,0.06) !important; }
.price-row:hover { background: rgba(255,255,255,0.03) !important; }
.price-row.header-row { color: rgba(255,255,255,0.3) !important; border-bottom-color: rgba(255,255,255,0.1) !important; }
.price-cta { background: rgba(255,255,255,0.03) !important; border-top-color: rgba(255,255,255,0.06) !important; }
.price-note { color: rgba(255,255,255,0.45) !important; }
.section h2, .section h3, .section p,
.section-alt h2, .section-alt h3, .section-alt p { color: rgba(255,255,255,0.75) !important; }
.sec-head h2 { color: #fff !important; }
.eyebrow { color: #BE5103 !important; }

/* review cards */
.review-card { background: rgba(255,255,255,0.02) !important; border-color: rgba(255,255,255,0.06) !important; }
.review-card blockquote { color: rgba(255,255,255,0.55) !important; }
.reviewer strong { color: #fff !important; }
.reviewer span { color: rgba(255,255,255,0.3) !important; }

/* faq */
.faq-item { border-bottom-color: rgba(255,255,255,0.06) !important; }
.faq-btn { color: rgba(255,255,255,0.7) !important; background: transparent !important; }
.faq-btn:hover, .faq-btn.open { color: #fff !important; }
.faq-body { color: rgba(255,255,255,0.5) !important; }

/* contact form */
.contact-form-box { background: rgba(255,255,255,0.03) !important; border-color: rgba(255,255,255,0.07) !important; }
.contact-form-box h3 { color: #fff !important; }
.contact-form-box label { color: rgba(255,255,255,0.35) !important; }
.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    background: rgba(255,255,255,0.04) !important;
    border-color: rgba(255,255,255,0.09) !important;
    color: #fff !important;
}
.contact-info h2 { color: #fff !important; }
.contact-info p, .contact-detail-text span { color: rgba(255,255,255,0.5) !important; }
.contact-detail-text strong { color: #fff !important; }
.ico-box { border-color: rgba(255,255,255,0.09) !important; background: rgba(255,255,255,0.03) !important; }

/* newsletter */
.newsletter { background: rgba(255,255,255,0.015) !important; border-top: 1px solid rgba(255,255,255,0.06); }
.newsletter h2 { color: #fff !important; }
.newsletter p { color: rgba(255,255,255,0.45) !important; }
.nl-form input {
    background: rgba(255,255,255,0.05) !important;
    border-color: rgba(255,255,255,0.1) !important;
    color: #fff !important;
}

/* footer */
.site-footer { background: #050505 !important; border-top: 1px solid rgba(255,255,255,0.06) !important; }
.footer-bottom { border-top-color: rgba(255,255,255,0.05) !important; color: rgba(255,255,255,0.18) !important; }
.footer-col h4 { color: rgba(255,255,255,0.25) !important; }
.footer-col a { color: rgba(255,255,255,0.45) !important; }
.footer-col a:hover { color: #fff !important; }
.footer-contact-item a, .footer-contact-item span { color: rgba(255,255,255,0.45) !important; }

/* ── Newsletter (inner pages) ── */
.t-newsletter {
    padding: 64px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    background: rgba(255,255,255,0.015);
}
.t-newsletter h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 8px;
}
.t-newsletter p { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 30px; }
.t-nl-form { display: flex; max-width: 420px; margin: 0 auto; }
.t-nl-form input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-right: none;
    border-radius: 4px 0 0 4px;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    padding: 12px 18px;
    outline: none;
}
.t-nl-form input::placeholder { color: rgba(255,255,255,0.25); }
.t-nl-form button {
    background: #fff;
    color: #0a0a0a;
    border: 1px solid #fff;
    border-radius: 0 4px 4px 0;
    font-family: 'Jost', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 22px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity .2s;
}
.t-nl-form button:hover { opacity: 0.82; }

/* ── Shared footer ── */
.t-footer {
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 64px 0 0;
}
.t-footer-grid {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
}
.t-footer-logo-num { font-size: 16px; font-weight: 600; letter-spacing: 0.28em; color: #fff; }
.t-footer-logo-sub { font-size: 9px; letter-spacing: 0.38em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-top: 3px; }
.t-footer-about { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.7; margin-top: 16px; }
.t-footer-col h4 { font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 18px; }
.t-footer-col ul { list-style: none; }
.t-footer-col li + li { margin-top: 10px; }
.t-footer-col a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color .2s; }
.t-footer-col a:hover { color: #fff; }
.t-footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 11px; }
.t-footer-contact-item .ico { font-size: 12px; opacity: 0.35; }
.t-footer-contact-item a, .t-footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.45); }
.t-footer-contact-item a:hover { color: #fff; }
.t-footer-bottom {
    max-width: 1440px;
    margin: 48px auto 0;
    padding: 20px 48px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11.5px;
    color: rgba(255,255,255,0.18);
}

/* ── Buttons ── */
.t-btn-primary {
    display: inline-block;
    background: #fff;
    color: #0a0a0a;
    border-radius: 9999px;
    padding: 13px 28px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: none;
    cursor: pointer;
    transition: opacity .2s;
    text-decoration: none;
}
.t-btn-primary:hover { opacity: 0.85; color: #0a0a0a; }
.t-btn-outline {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 9999px;
    padding: 13px 28px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: none;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}
.t-btn-outline:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); color: #fff; }

/* ── Override btn-solid / btn-dark to fit dark theme ── */
.btn-solid {
    background: #BE5103 !important;
    box-shadow: 0 4px 15px rgba(190,81,3,0.35) !important;
    color: #fff !important;
}
.btn-dark {
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff !important;
}
.btn-outline-dark {
    border-color: rgba(255,255,255,0.2) !important;
    color: #fff !important;
}
.btn-ghost { border-color: rgba(255,255,255,0.3) !important; color: #fff !important; }

/* ── Floating call button ── */
.float-call {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 300;
    background: #1E8080;
    color: #fff;
    border-radius: 9999px;
    padding: 13px 20px 13px 15px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 4px 24px rgba(30,128,128,0.45), 0 1px 4px rgba(0,0,0,0.4);
    transition: all .25s cubic-bezier(.4,0,.2,1);
}
.float-call:hover {
    background: #176666;
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(30,128,128,0.55);
    color: #fff;
}
.float-call-icon { flex-shrink: 0; }

/* ── Back to top ── */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 300;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.55);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    opacity: 0;
}
.back-to-top.visible {
    display: flex;
    opacity: 1;
}
.back-to-top:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.28);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Scroll-reveal animation ── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ── Active nav underline indicator ── */
.t-nav a {
    position: relative;
    padding-bottom: 3px;
}
.t-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 1px;
    background: #1E8080;
    transform: scaleX(0);
    transition: transform .2s;
}
.t-nav a.active::after,
.t-nav a:hover::after {
    transform: scaleX(1);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .t-header-inner { padding: 0 20px; grid-template-columns: auto 1fr auto; }
    .t-logo img { height: 52px; width: auto; }
    .t-nav { display: none; }
    .t-nav-toggle { display: block; }
    .t-footer-grid { grid-template-columns: 1fr 1fr; }
    .t-footer-bottom { padding: 20px 24px; flex-direction: column; gap: 6px; text-align: center; }
    .t-page-hero { padding: 60px 24px 52px; }
    .t-section-inner { padding: 0 24px; }
}
@media (max-width: 600px) {
    .t-footer-grid { grid-template-columns: 1fr; padding: 0 24px; }
    .t-header-inner { padding: 0 14px; grid-template-columns: auto 1fr auto; gap: 10px; }
    .t-logo img { height: 42px; width: auto; }
    .t-page-hero { padding: 44px 18px 40px; }
    .t-page-hero h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
    .float-call .float-call-text { display: none; }
    .float-call { padding: 14px; border-radius: 50%; width: 50px; height: 50px; justify-content: center; }
    .back-to-top { left: 16px; bottom: 16px; }
    .float-call { right: 16px; bottom: 16px; }
}
