/* TNT Fix - Brand Color Scheme (Black / Silver / Blue-Steel) */

/* === Custom Fonts === */
@font-face {
    font-family: 'NotoSansBlack';
    src: url('fonts/NotoSansKR-Black-latin.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MarkaziText';
    src: url('fonts/MarkaziText-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Caveat';
    src: url('fonts/Caveat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'MarkaziText', Georgia, serif;
    font-size: 1.3rem;
    background-color: #272727; /* Page background */
    color: #fff3dd; /* White text */
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'NotoSansBlack', Arial, sans-serif;
    color: #e8e8e8; /* Gold headings */
    font-weight: 900;
}

/* Catchy / caption / humored text */
.caveat,
.caption,
.service-tagline,
blockquote {
    font-family: 'Caveat', cursive;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: #e8e8e8; /* Gold titles */
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
    color: #e8e8e8; /* Gold headings */
}

p {
    color: #fff3dd; /* White normal text */
    margin-bottom: 1.3rem;
}

a {
    color: #e8e8e8; /* Gold links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #f2f2f2; /* Lighter gold on hover */
    text-decoration: underline;
}

/* Navigation */
nav {
    background-color: #0d0d0d; /* Dark header */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #e8e8e8; /* Gold logo */
    font-family: 'NotoSansBlack', Arial, sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
}
.logo:hover {
    color: #f2f2f2;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: 60px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #1f9bcf;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: rgba(31, 155, 207, 0.15); /* Cyan tint on hover */
    text-decoration: none;
}

/* Mobile menu toggle (hamburger) */
.nav-toggle {
    display: none;               /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #e8e8e8;
    margin: 4px 0;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animate the hamburger into an "X" when open */
.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* When mobile menu is open */
.nav-links.nav-links-open {
    display: flex;
}


/* Cover Banner */
.cover-banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background-color: #0d0d0d;
    border-bottom: 3px solid #0d0d0d;
}

.cover-video,
.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    background: rgba(6, 8, 48, 0.85);
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 0 0 300px;
    max-width: 200px;
    height: 300px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #e8e8e8; /* Gold */
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff3dd;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.6rem 1rem;
    background: rgba(6, 8, 48, 0.50);
    color: #e8e8e8;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(232, 232, 232,0.7);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    text-decoration: none;
    border-color: #f2f2f2;
    box-shadow: 0 12px 28px rgba(232, 232, 232, 0.35);
    transform: translateY(-5px);
}

/* Hero dual-CTA layout */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 968px) {
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-cta .btn {
        text-align: center;
    }
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Service Categories Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-category {
    background: rgba(6, 8, 48, 0.75); /* Darker blue with transparency */
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #e8e8e8; /* Gold border */
    transition: all 0.3s ease;
    text-align: center;
}

.service-category:hover {
    transform: translateY(-5px);
    border-color: #f2f2f2;
    box-shadow: 0 10px 30px rgba(232, 232, 232,0.3);
}

.category-image {
    width: 220px;
    height: 220px;
    object-fit: contain;  /* keeps the full character visible */
    display: block;
    margin: 0 auto 1.5rem auto; /* centers all icons uniformly */
}

.service-category h2 {
    color: #e8e8e8; /* Gold titles */
    margin-bottom: 1rem;
}

.service-category h3 {
    color: #fff3dd; /* subheadings */
    margin-bottom: 0.5rem;
}

.service-category p {
    color: #fff3dd;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Service Tiles Grid */
.tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-tile {
    position: relative;
    background: rgba(6, 8, 48, 0.80); /* Darker blue */
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #e8e8e8; /* Gold border */
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none !important;
    display: block;
}

.service-tile:hover {
    transform: translateY(-5px);
    border-color: #f2f2f2;
    box-shadow: 0 10px 30px rgba(232, 232, 232,0.3);
    text-decoration: none !important;
}

/* Prevent underline on all child elements */
.service-tile h3,
.service-tile p,
.service-tile ul,
.service-tile li {
    text-decoration: none !important;
}

.service-tile h3 {
    color: #e8e8e8; /* Gold title */
    margin-bottom: 0.5rem;
}

.service-tile .price {
    color: #e8e8e8; /* price */
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

.service-tile ul {
    list-style: none;
    margin: 1rem 0;
}

.service-tile li {
    color: #fff3dd;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-tile li:before {
    content: "🔹";
    position: absolute;
    left: 0;
}

/* TNT Explosion Animation */
.flash {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, #e8e8e8 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.6s ease-out;
}

.flash.active {
    width: 200%;
    height: 200%;
    opacity: 1;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #e8e8e8;
    border-radius: 50%;
    pointer-events: none;
    animation: particle-burst 1s ease-out forwards;
}

@keyframes particle-burst {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

/* Dividers */
hr {
    border: none;
    border-top: 2px solid rgba(232,232,232,0.15); /* dividers */
    margin: 3rem 0;
    opacity: 0.5;
}

.cta-section {
    text-align: center;
    padding: 1.5rem 1.5rem;
    background: rgba(6, 8, 48, 0.85);
    border: 2px solid #e8e8e8;
    margin: 2rem 0;
    border-radius: 10px;
}

.cta-image {
    width: 220px;
    height: 220px;
    object-fit: contain;  /* keeps the full character visible */
    display: block;
    margin: 0 auto 1.5rem auto; /* centers all icons uniformly */

}

.cta-section h2 {
    color: #e8e8e8; /* Gold */
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: #0d0d0d; /* Dark footer */
    color: #fff3dd;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 3px solid rgba(232,232,232,0.15); /* divider */
}

footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Page */
.contact-info {
    background: rgba(6, 8, 48, 0.75);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #e8e8e8;
    margin: 2rem auto;      /* center this block horizontally */
    max-width: 800px;       /* keeps it nicely centered on large screens */
}

.contact-form-frame {
    width: 100%;        /* fill the contact-info area */
    max-width: 100%;
    height: 1200px;     /* adjust if you see internal scrollbars */
    border: 0;          /* no visible iframe border */
    display: block;
    margin: 0 auto;     /* extra centering safety */
}

.contact-info h2 {
    color: #e8e8e8;
}

.contact-info h3 {
    color: #e8e8e8;
}

.contact-info p {
    margin: 0.5rem 0;
}

/* Intro Section */
.intro-section {
    text-align: center;
    margin: 3rem 0;
}

.intro-section h1 {
    color: #e8e8e8;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.intro-section h2 {
    color: #e8e8e8;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.intro-section h3 {
    color: #e8e8e8;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    background: rgba(6, 8, 48, 0.55);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #e8e8e8;
}

.intro-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-content ul {
    list-style: none;
    margin: 1rem 0 1.5rem 2rem;
}

.intro-content ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.intro-content ul li:before {
    content: "🔹";
    position: absolute;
    left: 0;
}

/* Duration styling for service tiles */
.service-tile .duration {
    color: #fff3dd;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0.5rem 0;
    opacity: 0.9;
}

/* Service Detail Layout */
.service-header {
    text-align: center;
    margin: 2rem 0 2.5rem 0;
}

.service-header h1 {
    font-size: 2.3rem;
    margin-bottom: 0.5rem;
}

.service-tagline {
    font-size: 1.1rem;
    color: #fff3dd;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.service-meta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    font-size: 0.95rem;
    color: #fff3dd;
    opacity: 0.9;
}

.service-meta span {
    background: rgba(6, 8, 48, 0.80);
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 0.4rem 0.9rem;
}

/* Two-column content for desktop */
.service-layout {
    display: grid;
    grid-template-columns: 2fr 1.1fr;
    gap: 2.5rem;
    margin: 2rem 0 3rem 0;
}

.service-main,
.service-sidebar {
    background: rgba(6, 8, 48, 0.75);
    border-radius: 10px;
    border: 2px solid #e8e8e8;
    padding: 1.75rem;
}

.service-main h2,
.service-sidebar h2 {
    margin-bottom: 0.75rem;
}

.service-main ul,
.service-sidebar ul {
    list-style: none;
    margin: 0.75rem 0 0 0;
    padding-left: 1.5rem;
}

.service-main li,
.service-sidebar li {
    margin-bottom: 0.5rem;
    position: relative;
}

.service-main li::before,
.service-sidebar li::before {
    content: "🔹";
    position: absolute;
    left: -1.3rem;
}

/* Booking box */
.booking-box {
    text-align: center;
    background: rgba(6, 8, 48, 0.90);
    border-radius: 10px;
    border: 2px solid rgba(232,232,232,0.3);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.booking-price {
    font-size: 1.4rem;
    color: #e8e8e8;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.booking-duration {
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.booking-note {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-top: 0.75rem;
}

/* Optional image on service page */
.service-image {
    display: block;
    max-width: 220px;
    height: 220px;
    object-fit: contain;
    margin: 0 auto 1.5rem auto;
}

/* Responsive for service layout */
@media (max-width: 900px) {
    .service-layout {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image {
        flex: 0 0 250px;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        max-width: 100%;
        padding: 0 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }

    /* Show hamburger on mobile */
    .nav-toggle {
        display: block;
    }

    /* Hide links by default on mobile */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none; /* controlled by .nav-links-open */
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        background-color: #0d0d0d; /* match nav bar */
        padding: 0.5rem 0;
        border-bottom: 2px solid #0d0d0d;
    }

    .nav-links li a {
        display: block;
        padding: 0.75rem 1rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1.5rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-image {
        flex: 0 0 200px;
        max-width: 200px;
    }

    .tiles-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .category-image {
        max-width: 200px;
    }

    .cta-image {
        width: 100px;
    }

    .cover-banner {
        height: 200px;
    }

    /* NEW: Why Choose section responsiveness */
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-section {
        padding: 1.5rem;
    }
}

/* ---------------------------------------
   NEW: Homepage "Why Choose TNT Fix" styles
   (added only; no global changes)
---------------------------------------- */
.why-choose-section {
    background: rgba(6, 8, 48, 0.75);
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: 2rem;
    margin: 0 0 2rem 0;
}

.why-choose-subhead {
    max-width: 950px;
    margin: 0 auto 1.5rem auto;
    opacity: 0.95;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.why-choose-card {
    background: rgba(6, 8, 48, 0.60);
    border: 2px solid rgba(232, 232, 232,0.6);
    border-radius: 10px;
    padding: 1.5rem;
}

.why-choose-card h3 {
    margin-bottom: 0.5rem;
}

.why-choose-card p {
    margin-bottom: 0;
}

.why-choose-actions {
    text-align: center;
    margin-top: 1.25rem;
}

.why-choose-link {
    display: inline-block;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    border: 2px solid rgba(232, 232, 232,0.7);
    background: rgba(6, 8, 48, 0.50);
    text-decoration: none;
}

.why-choose-link:hover {
    text-decoration: none;
    border-color: #f2f2f2;
    box-shadow: 0 12px 28px rgba(232, 232, 232, 0.35);
    transform: translateY(-5px);
}

/* === TNT Fix Theme Overrides (Google Sites palette + solid header + wide-screen cover) ===
   Appended to the end of the stylesheet so it overrides earlier rules without deleting content.
*/
:root{
  --gs-bg: #272727;          /* deep charcoal bg */
  --gs-surface: #060830;     /* blue-silver surfaces */
  --gs-surface-hover: #3d454c; /* dark grey-blue hover */
  --gs-accent: #e8e8e8;      /* TNT gold accent */
  --gs-text: #fff3dd;        /* warm white text */
  --gs-radius: 10px;
  --gs-content-max: 1200px;
  /* ~1 inch wider than content on each side on large screens */
  --gs-cover-max: calc(var(--gs-content-max) + 160px);
  --gs-shadow: 0 10px 30px rgba(0,0,0,0.22);
  --gs-glow: 0 0 0 2px rgba(232, 232, 232,0.70), 0 12px 28px rgba(232, 232, 232,0.22);
}

/* Global colors + typography */
body{
  background-color: var(--gs-bg) !important;
  color: var(--gs-text) !important;
}
p, li, .service-tile li, .service-category p, .intro-content p, .contact-info p{
  color: var(--gs-text) !important;
}
h1,h2,h3,h4,h5,h6{
  color: var(--gs-accent) !important;
  font-family: 'NotoSansBlack', Arial, sans-serif !important;
  font-weight: 900 !important;
}
a{
  color: var(--gs-accent) !important;
}
a:hover{
  color: #f2f2f2 !important;
}

/* Dividers */
hr{
  border-top-color: var(--gs-text) !important;
}

/* ===== Solid (opaque) header + hamburger menu on ALL displays ===== */
nav{
  background-color: #0d0d0d !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.30) !important;
}

/* Ensure the nav container can anchor the dropdown */
.nav-container{
  position: relative !important;
}

/* Always show hamburger */
.nav-toggle{
  display: block !important;
}

/* Always use dropdown menu (even desktop) */
.nav-links{
  /* override earlier desktop flex layout */
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;

  position: absolute !important;
  top: 100% !important;
  right: 0 !important;
  left: auto !important;

  width: min(360px, 92vw) !important;
  margin: 0.75rem 0 0 0 !important;

  background-color: #0d0d0d !important;
  border: 2px solid rgba(232, 232, 232,0.70) !important;
  border-radius: 12px !important;

  overflow: hidden !important;
  max-height: 0 !important;
  opacity: 0 !important;
  transform: translateY(-8px) !important;
  pointer-events: none !important;
  padding: 0 !important;

  transition: max-height 0.25s ease, opacity 0.25s ease, transform 0.25s ease !important;
  z-index: 1001 !important;
}

.nav-links.nav-links-open{
  max-height: 70vh !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
  padding: 0.5rem 0 !important;
}

.nav-links li a{
  display: block !important;
  padding: 0.75rem 1rem !important;
}

/* Backdrop remains optional; keep it compatible */
.nav-backdrop{
  background: rgba(0,0,0,0.55) !important;
}

/* ===== Cover banner: max width + centered + background matches page ===== */
.cover-banner{
  background-color: var(--gs-bg) !important;  /* outside the video frame */
  border-bottom: none !important;

  width: 100% !important;
  max-width: var(--gs-cover-max) !important;
  margin: 0 auto !important;

  /* keep it feeling like a wide hero strip without cropping too aggressively */
  height: clamp(220px, 26vw, 340px) !important;

  border-radius: 14px !important;
  overflow: hidden !important;
}

/* Keep the video behaving nicely inside the framed banner */
.cover-video,
.cover-image{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* Add a little breathing room below the cover so content cards don't stick to it */
.cover-banner + .hero{
  margin-top: 18px !important;
}

/* ===== Buttons: match why-choose-link tile style ===== */
.btn{
  background: rgba(6, 8, 48, 0.50) !important;
  color: var(--gs-accent) !important;
  border: 2px solid rgba(232, 232, 232,0.7) !important;
  box-shadow: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
  text-decoration: none !important;
  position: relative !important;
  overflow: hidden !important;
}

.btn:hover{
  background: rgba(6, 8, 48, 0.50) !important;
  color: var(--gs-accent) !important;
  border-color: #f2f2f2 !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 12px 28px rgba(232, 232, 232, 0.35) !important;
  text-decoration: none !important;
}

/* ===== Tiles: keep existing behavior but ensure glow hover matches ===== */
.service-tile,
.service-category,
.why-choose-card{
  border-color: rgba(232, 232, 232,0.70) !important;
}

.service-tile:hover,
.service-category:hover,
.why-choose-card:hover{
  box-shadow: var(--gs-glow) !important;
  border-color: var(--gs-accent) !important;
}

/* ===== Why Choose: force 2 columns on wide screens, 1 column on mobile ===== */
.tiles-grid.why-choose-grid{
  grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
}

@media (max-width: 768px){
  .tiles-grid.why-choose-grid{
    grid-template-columns: 1fr !important;
  }
}

/* ===== Payment Information Section ===== */
.payment-info-section {
  background: rgba(6, 8, 48, 0.75);
  border: 2px solid var(--gs-accent, #e8e8e8);
  border-radius: var(--gs-radius, 10px);
  padding: 2.5rem;
  margin: 0 0 2rem 0;
}

.payment-info-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.payment-info-block {
  background: rgba(6, 8, 48, 0.60);
  border: 2px solid rgba(150,173,184,0.5);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  /* No hover effect - static tile */
  cursor: default;
}

.payment-info-block:last-child {
  margin-bottom: 0;
}

.payment-info-block h3 {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.payment-info-block p {
  margin-bottom: 0.75rem;
}

.payment-info-block p:last-child {
  margin-bottom: 0;
}

.payment-info-block ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.payment-info-block li {
  color: var(--gs-text, #c6ddea);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.payment-info-block li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gs-accent, #e8e8e8);
}

.no-fee-badge {
  display: inline-block;
  background: rgba(76, 175, 80, 0.3);
  color: #81c784;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(76, 175, 80, 0.5);
  font-family: 'MarkaziText', Georgia, serif;
}

.payment-example {
  background: rgba(150,173,184,0.15);
  border-left: 3px solid rgba(232,232,232,0.3);
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  border-radius: 0 6px 6px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .payment-info-section {
    padding: 1.5rem;
  }
  
  .payment-info-block {
    padding: 1.25rem 1.5rem;
  }
}

/* ===== Payment Info Link in Booking Box ===== */
.payment-info-link {
  text-align: center;
  margin: 1rem 0 0.75rem 0;
  font-size: 0.9rem;
}

.payment-info-link a {
  color: var(--gs-text, #c6ddea) !important;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(150,173,184,0.4);
  border-radius: 6px;
  display: inline-block;
  transition: all 0.25s ease;
}

.payment-info-link a:hover {
  color: var(--gs-accent, #e8e8e8) !important;
  border-color: var(--gs-accent, #e8e8e8);
  background: rgba(232, 232, 232,0.1);
  text-decoration: none;
}

/* ===== Payment Info Link - Button Style Match ===== */
.payment-info-link a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--gs-surface, #0d0d0d) !important;
  color: var(--gs-accent, #e8e8e8) !important;
  border: 2px solid var(--gs-accent, #e8e8e8) !important;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none !important;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease !important;
}

.payment-info-link a:hover {
  background-color: var(--gs-surface-hover, #3d454c) !important;
  color: var(--gs-accent, #e8e8e8) !important;
  border-color: var(--gs-accent, #e8e8e8) !important;
  transform: translateY(-5px) !important;
  box-shadow: var(--gs-glow, 0 0 0 2px rgba(232, 232, 232,0.70), 0 12px 28px rgba(232, 232, 232,0.22)) !important;
  text-decoration: none !important;
}

/* ==================================================
   NAVIGATION MENU EXPANSION FIX
   Added: January 8, 2026
   Purpose: Handle expanded 9-item navigation menu
   ================================================== */

/* Enhanced mobile navigation - scrollable for long menus */
@media (max-width: 768px) {
    .nav-links {
        /* Allow scrolling if menu items exceed viewport height */
        max-height: none; !important; /* Reserve space for header */
        overflow-y: auto !important;
        overflow-x: hidden !important;
        
        /* Smooth scrolling */
        -webkit-overflow-scrolling: touch !important;
        scroll-behavior: smooth !important;
        
        /* Add padding at bottom for better UX */
        padding-bottom: 2rem !important;
    }
    
    /* When menu is open, make it more prominent */
    .nav-links.nav-links-open {
        /* Override the max-height set elsewhere */
        max-height: calc(100vh - 80px) !important;
    }
    
    /* Style the scrollbar for better appearance */
    .nav-links::-webkit-scrollbar {
        width: 6px;
    }
    
    .nav-links::-webkit-scrollbar-track {
        background: rgba(150, 173, 184, 0.1);
        border-radius: 3px;
    }
    
    .nav-links::-webkit-scrollbar-thumb {
        background: rgba(150, 173, 184, 0.3);
        border-radius: 3px;
    }
    
    .nav-links::-webkit-scrollbar-thumb:hover {
        background: rgba(150, 173, 184, 0.5);
    }
    
    /* Ensure nav items don't get cut off */
    .nav-links li {
        flex-shrink: 0 !important;
    }
}

/* Very small mobile screens - ensure readability */
@media (max-width: 400px) {
    .nav-links a {
        font-size: 1rem !important; /* Ensure readability on small screens */
        padding: 0.75rem 1rem !important;
    }
}

/* Desktop/larger screens - handle more items gracefully */
@media (min-width: 769px) {
    /* If nav ever needs to be horizontal on desktop, this ensures wrapping works */
    .nav-links.horizontal-desktop {
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
        row-gap: 0.5rem;
    }
    
    .nav-links.horizontal-desktop li {
        margin-left: 1.5rem;
    }
    
    .nav-links.horizontal-desktop a {
        font-size: 0.95rem;
        white-space: nowrap;
    }
}

/* Ensure nav container can accommodate wrapped items if needed */
.nav-container {
    align-items: center !important;
    min-height: 60px !important; /* Allow expansion if nav wraps */
}

/* ===== Breadcrumb Navigation ===== */
.breadcrumb-bar {
  width: 100%;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(232,232,232,0.1);
}

.breadcrumb-inner {
  max-width: var(--gs-cover-max, 1360px);
  margin: 0 auto;
  padding: 0.5rem 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.82rem;
  font-family: 'MarkaziText', Georgia, serif;
}

.breadcrumb-inner a {
  color: #96ADB8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-inner a:hover {
  color: #e8e8e8;
  text-decoration: none;
}

.breadcrumb-inner .bc-sep {
  color: rgba(150,173,184,0.4);
  margin: 0 0.1rem;
  user-select: none;
}

.breadcrumb-inner .bc-current {
  color: #e8e8e8;
  font-weight: 600;
}

/* ===== Cyan accent for nav, footer, links (matching book.tntfix.com) ===== */
:root {
  --tnt-cyan: #1f9bcf;
  --tnt-cyan-hover: #3db8e8;
}

/* Nav links */
.nav-links a,
.nav-links li a {
  color: var(--tnt-cyan) !important;
}

.nav-links a:hover,
.nav-links li a:hover {
  color: var(--tnt-cyan-hover) !important;
  background-color: rgba(31, 155, 207, 0.12) !important;
}

/* Logo text */
.logo {
  color: var(--tnt-cyan) !important;
}

/* Footer text, links */
footer,
footer p,
footer a,
footer li,
footer span,
#footer,
.footer {
  color: var(--tnt-cyan) !important;
}

/* Breadcrumb links */
.breadcrumb-inner a {
  color: var(--tnt-cyan) !important;
}

.breadcrumb-inner a:hover {
  color: var(--tnt-cyan-hover) !important;
}

/* General page links */
a:not(.btn):not(.logo):not(.service-tile):not(.service-category):not(.why-choose-card) {
  color: var(--tnt-cyan) !important;
}

a:not(.btn):not(.logo):not(.service-tile):not(.service-category):not(.why-choose-card):hover {
  color: var(--tnt-cyan-hover) !important;
}

/* ===== Scroll Reveal Animation ===== */

/* --- Box reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Text wipe inside revealed boxes --- */
/* Wrap mechanism: .reveal-text spans get a clip-path wipe */
.reveal-text {
    display: inline-block;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.55s; /* fires after box has landed */
}

.revealed .reveal-text {
    clip-path: inset(0 0% 0 0);
}

/* Block-level text wipe (for h2, p, etc.) */
.reveal-text-block {
    overflow: hidden;
}

.reveal-text-block > * {
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.5s ease;
    transition-delay: 0.5s;
}

.revealed .reveal-text-block > * {
    transform: translateY(0);
    opacity: 1;
}

/* Stagger delays for grid children — slower & more dramatic */
.reveal-stagger .reveal:nth-child(1)  { transition-delay: 0s; }
.reveal-stagger .reveal:nth-child(2)  { transition-delay: 0.12s; }
.reveal-stagger .reveal:nth-child(3)  { transition-delay: 0.24s; }
.reveal-stagger .reveal:nth-child(4)  { transition-delay: 0.36s; }
.reveal-stagger .reveal:nth-child(5)  { transition-delay: 0.48s; }
.reveal-stagger .reveal:nth-child(6)  { transition-delay: 0.60s; }
.reveal-stagger .reveal:nth-child(7)  { transition-delay: 0.72s; }
.reveal-stagger .reveal:nth-child(8)  { transition-delay: 0.84s; }
.reveal-stagger .reveal:nth-child(9)  { transition-delay: 0.96s; }
.reveal-stagger .reveal:nth-child(10) { transition-delay: 1.08s; }
.reveal-stagger .reveal:nth-child(11) { transition-delay: 1.20s; }
.reveal-stagger .reveal:nth-child(12) { transition-delay: 1.32s; }

/* Stagger text wipe delays must add the box delay on top */
.reveal-stagger .reveal:nth-child(1)  .reveal-text { transition-delay: 0.55s; }
.reveal-stagger .reveal:nth-child(2)  .reveal-text { transition-delay: 0.67s; }
.reveal-stagger .reveal:nth-child(3)  .reveal-text { transition-delay: 0.79s; }
.reveal-stagger .reveal:nth-child(4)  .reveal-text { transition-delay: 0.91s; }
.reveal-stagger .reveal:nth-child(5)  .reveal-text { transition-delay: 1.03s; }
.reveal-stagger .reveal:nth-child(6)  .reveal-text { transition-delay: 1.15s; }
.reveal-stagger .reveal:nth-child(7)  .reveal-text { transition-delay: 1.27s; }
.reveal-stagger .reveal:nth-child(8)  .reveal-text { transition-delay: 1.39s; }
.reveal-stagger .reveal:nth-child(9)  .reveal-text { transition-delay: 1.51s; }
.reveal-stagger .reveal:nth-child(10) .reveal-text { transition-delay: 1.63s; }
.reveal-stagger .reveal:nth-child(11) .reveal-text { transition-delay: 1.75s; }
.reveal-stagger .reveal:nth-child(12) .reveal-text { transition-delay: 1.87s; }
