/* Hero Section */
.services-hero {
    background-color: #0A3328; /* Solid dark green */
    height: 300px; /* Reduced height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    border-bottom: 2px solid #D4AF37; /* subtle premium separation */
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem; /* smaller for shorter hero */
    font-weight: 700;
    margin-bottom: 12px;
    color: #D4AF37; /* Gold accent */
    text-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.hero-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
    color: #f5f5f5;
}


/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: #D4AF37;
}

/* Card Icon */
.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.service-card:hover .card-icon {
    transform: scale(1.2) rotate(12deg);
}

/* Card Heading & Intro */
.service-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #0D1F1A;
    margin-bottom: 12px;
}

.card-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #0A3328;
    margin-bottom: 20px;
}

/* View Details Button */
.view-details-btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    background-color: #0D1F1A;
    color: #D4AF37;
    transition: background 0.3s ease, transform 0.3s ease;
}

.view-details-btn:hover {
    background-color: #145C45;
    transform: scale(1.05);
    color: #fff;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .card-icon {
        font-size: 2.5rem;
    }
}
/* Hero Section */
.service-details-header {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 120px 20px 80px;
    background: #0D1F1A;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.service-details-header canvas#hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #D4AF37;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
    text-align: center;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fff;
    opacity: 0.85;
    text-align: center;
}

/* Premium Back Button */
.back-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #D4AF37, #fff);
    color: #0D1F1A;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    transition: 0.4s;
}

.back-btn:hover {
    background: linear-gradient(135deg, #fff, #D4AF37);
    color: #0D1F1A;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 1);
}
/* ============================= */
/* Breadcrumbs - Premium Style   */
/* ============================= */
.breadcrumbs {
    background-color: #F4F4F4;        /* subtle light grey background */
    padding: 12px 20px;                /* space inside breadcrumb bar */
    margin-bottom: 30px;               /* separates from hero section */
    font-size: 14px;                    /* readable but compact */
    font-weight: 500;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* soft shadow for elevation */
}

.breadcrumbs .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;                           /* spacing between items */
}

.breadcrumbs a {
    text-decoration: none;
    color: #145C45;                     /* primary brand green */
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    text-decoration: underline;
    color: #0A3328;                     /* darker green on hover */
}

.breadcrumbs span {
    font-weight: 600;
    color: #333;                        /* active/current page */
}

.breadcrumbs a::after {
    content: "›";                        /* breadcrumb separator */
    margin: 0 5px;
    color: #888;
}

.breadcrumbs a:last-of-type::after {
    content: "";                         /* remove arrow after last link */
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .breadcrumbs {
        font-size: 13px;
        padding: 10px 15px;
    }
    .breadcrumbs .container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==============================
   TABLES
   ============================== */
.service-tables h2 {
    margin-top: 50px;
    margin-bottom: 15px;
    color: #D4AF37;
    font-size: 1.8rem;
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #0A3328;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

th, td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #145C45;
    color: #fff;
    transition: 0.3s;
}

th {
    background: #145C45;
    color: #D4AF37;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

td {
    text-align: center;
}

/* Neon hover effect */
tr:hover td {
    background: #1E7A60;
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.3);
}
/* Explainer row container */
.explainer-row .explainer-content {
    background-color: #f9f9f9;       /* Light neutral background */
    border-left: 4px solid #145C45;  /* Kissor Digital brand green accent */
    padding: 20px 25px;
    border-radius: 8px;
    margin: 10px 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Headings */
.explainer-content h4 {
    color: #145C45;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

/* Subtitle / description */
.explainer-content p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Lists */
.explainer-content ul,
.explainer-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.explainer-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Section titles inside explainer */
.explainer-content strong {
    color: #0A3328; /* darker green accent */
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Optional hover effect on table row */
.service-row[data-has-explainer="1"]:hover {
    background-color: #f0fdf6; /* subtle green highlight */
}

/* ==============================
   PRICE BADGE
   ============================== */
.price-badge {
    display: inline-block;
    padding: 8px 16px;
    background: #D4AF37;
    color: #0D1F1A;
    font-weight: 700;
    border-radius: 25px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.9);
    text-align: center;
    animation: pulse 2s infinite;
    margin-top: 5px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 10px rgba(212,175,55,0.5); transform: scale(1); }
    50% { box-shadow: 0 0 25px rgba(212,175,55,1); transform: scale(1.05); }
    100% { box-shadow: 0 0 10px rgba(212,175,55,0.5); transform: scale(1); }
}

/* ==============================
   NOTES
   ============================== */
.service-notes {
    background: #0A3328;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    margin-bottom: 60px;
}

.service-notes h3 {
    color: #D4AF37;
    margin-bottom: 10px;
}

.service-notes ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #fff;
}

.service-notes ul li {
    margin-bottom: 5px;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
    .service-details-header h1 {
        font-size: 2.5rem;
    }
    .service-details-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .service-details-header {
        padding: 100px 15px 60px;
    }
    th, td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
    .service-tables h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-details-header h1 {
        font-size: 2rem;
    }
    .service-details-header p {
        font-size: 1rem;
    }
    .back-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    th, td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
    .service-tables h2 {
        font-size: 1.3rem;
    }
}
/* ===============================
   GLOBAL SERVICE PAGE STYLING
=============================== */
.service-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.65;
    color: #0D1F1A;
    background-color: #fff;
}

/* ===============================
   HEADINGS
=============================== */
.service-page h1,
.service-page h2,
.service-page h3 {
    font-weight: 700;
    color: #0D1F1A;
    line-height: 1.3;
    text-align: center;
}

.service-page h1 { font-size: 3rem; margin-bottom: 1.5rem; }
.service-page h2 { font-size: 2.25rem; margin-bottom: 1.5rem; border-left: 5px solid #D4AF37; padding-left: 1rem; }
.service-page h3 { font-size: 1.5rem; margin-top: 1.5rem; }

/* ===============================
   PARAGRAPHS
=============================== */
.service-page p {
    font-size: 1.125rem;
    color: #333;
    max-width: 850px;
    margin: 1rem auto;
    text-align: center;
}

/* ===============================
   HERO SECTION IMPROVEMENT
=============================== */
.service-hero {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #0A3328, #145C45);
    color: #fff; /* bright white text for readability */
    border-radius: 16px;
    position: relative;
}

.service-hero h1 {
    color: #fff; /* ensure main heading is visible */
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-hero p {
    color: #F5F5F5; /* soft white for subheading */
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
}

/* Hero CTA Buttons */
.service-hero .btn-primary {
    background: #FFD700; /* bright gold */
    color: #0D1F1A;
}

.service-hero .btn-primary:hover {
    background: #FFC300; /* slightly darker gold on hover */
}

.service-hero .btn-secondary {
    border: 2px solid #FFD700;
    color: #FFD700;
}

.service-hero .btn-secondary:hover {
    background: #FFD700;
    color: #0D1F1A;
}

/* ===============================
   STATEMENT BLOCKS
=============================== */
.statement {
    position: relative;
    font-size: 1.3rem;
    font-weight: 600;
    color: #145C45;
    background: #F5F8F7;
    padding: 2rem 2.5rem;
    border-left: 8px solid #D4AF37;
    border-radius: 14px;
    max-width: 700px;
    margin: 3rem auto;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.statement::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #D4AF37 0%, #145C45 100%);
    top: -20px;
    right: -20px;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

/* ===============================
   TRUST SIGNALS
=============================== */
.trust-signals { margin-bottom: 4rem; }
.trust-signals h2 { margin-bottom: 2rem; }
.trust-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    justify-items: center;
}
.trust-card {
    background: #F5F8F7;
    padding: 2rem 1rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}
.trust-card:hover { transform: translateY(-5px); }
.trust-card .trust-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }

/* ===============================
   PROBLEM & SOLUTION CARDS
=============================== */
.problem-cards, .solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.problem-card, .solution-card {
    background: #F5F8F7;
    padding: 1.5rem;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}
.problem-card:hover, .solution-card:hover { transform: translateY(-5px); }
.problem-icon, .solution-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }

/* ===============================
   INCLUDED GRID
=============================== */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.included-item {
    background: #F5F8F7;
    padding: 1.5rem;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}
.included-item:hover { transform: translateY(-5px); }

/* ===============================
   HOW IT WORKS
=============================== */
.process-steps {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.process-steps li {
    counter-increment: step;
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
    font-weight: 500;
}
.process-steps li .step-number {
    position: absolute;
    left: 0;
    top: 0;
    background: #D4AF37;
    color: #0D1F1A;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ===============================
   PRICING SECTION – PREMIUM STYLING
=============================== */
.service-pricing {
    background: #F9FBFA;
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    margin: 3rem 0;
}

/* Section heading */
.service-pricing h2 {
    font-size: 2.5rem;
    color: #0D1F1A;
    margin-bottom: 3rem;
    position: relative;
}

/* Optional underline for heading */
.service-pricing h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #D4AF37;
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Pricing cards container – center aligned using CSS Grid */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-content: center; /* center the grid */
    gap: 2rem;               /* spacing between cards */
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual pricing card */
.pricing-box {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Hover effect for premium feel */
.pricing-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.08);
}


/* Pricing card heading */
.pricing-box h3 {
    font-size: 1.75rem;
    margin-bottom: 0.8rem;
    color: #145C45;
}

/* Description under heading */
.pricing-box p {
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 1rem;
}

/* Price styling */
.pricing-box strong {
    font-size: 1.5rem;
    color: #D4AF37;
}

/* ===============================
   PAYMENT NOTE ANIMATION
=============================== */
.payment-note {
    font-weight: 700;
    color: #145C45; /* Dark green text for contrast */
    background-color: #FFD700; /* Gold background for visibility */
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-size: 1.125rem;
    margin-top: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;              /* start hidden */
    transform: translateY(20px); /* start slightly lower */
    animation: slideUpFade 1s ease-out forwards; /* apply animation */
    animation-delay: 0.5s;   /* slight delay after page load */
}

/* Slide-up + fade-in keyframes */
@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover lift effect */
.payment-note:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    cursor: default;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .payment-note {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
}



/* ===============================
   WHY KISSOR DIGITAL – CENTERED & EVEN CARDS
=============================== */
.service-why ul {
    display: flex;
    justify-content: space-between; /* distributes cards evenly */
    flex-wrap: wrap; /* allows wrapping on smaller screens */
    gap: 2rem; /* spacing between cards */
    padding: 0;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto; /* centers the entire grid */
}

.service-why li {
    background: #fff;
    flex: 1 1 18%; /* each card takes roughly equal width, flexible */
    min-width: 200px; /* prevents cards from shrinking too much */
    padding: 1.8rem 1.5rem;
    border-radius: 16px;
    font-weight: 600;
    color: #145C45;
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

/* Hover effect */
.service-why li:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.08);
}

/* Optional checkmark icon */
.service-why li::before {
    content: '✔️';
    display: block;
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .service-why li {
        flex: 1 1 30%; /* 3 per row on medium screens */
    }
}

@media (max-width: 768px) {
    .service-why ul {
        justify-content: center; /* centers cards */
        gap: 1.5rem;
    }
    .service-why li {
        flex: 1 1 100%; /* stack cards on mobile */
        max-width: 400px;
    }
}


/* ===============================
   FAQ
=============================== */
.service-faq h2 { margin-bottom: 2rem; }
.service-faq h3 { color: #145C45; font-weight: 600; margin-top: 1.5rem; }
.service-faq p { margin-top: 0.5rem; color: #333; }

/* ===============================
   FINAL CTA IMPROVEMENT
=============================== */
.service-cta {
    background: linear-gradient(135deg, #145C45, #0A3328);
    color: #fff;
    padding: 5rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
}

.service-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFD700; /* bright gold heading for visibility */
}

/* CTA buttons */
.service-cta .btn-primary {
    background: #FFD700;
    color: #0D1F1A;
}

.service-cta .btn-primary:hover {
    background: #FFC300;
}

.service-cta .btn-secondary {
    border-color: #fff;
    color: #fff;
}

.service-cta .btn-secondary:hover {
    background: #fff;
    color: #0D1F1A;
}

.service-cta .btn-outline {
    border: 2px solid #FFD700;
    color: #FFD700;
}

.service-cta .btn-outline:hover {
    background: #FFD700;
    color: #0D1F1A;
}
/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 768px) {
    .service-page { padding: 2rem 1rem; }
    .service-page h1 { font-size: 2.2rem; }
    .service-page h2 { font-size: 1.8rem; }
    .service-hero h1 { font-size: 2.4rem; }
    .service-hero p { font-size: 1.2rem; }
    .statement { font-size: 1.15rem; padding: 1.5rem 2rem; max-width: 90%; }
    .statement::before { width: 50px; height: 50px; top: -10px; right: -10px; }
    .pricing-box, .trust-card, .problem-card, .solution-card, .included-item, .service-why li { padding: 1.5rem; }
}
/* ===============================
   SECTION SPACING BALANCE
=============================== */
.service-page section {
    margin-bottom: 3rem; /* Reduced from 5rem for better balance */
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Adjust spacing between headings and content */
.service-page h2,
.service-page h3 {
    margin-bottom: 1.5rem;
}

/* Reduce spacing for paragraphs under headings */
.service-page p {
    margin-bottom: 1rem;
}

/* Specific section adjustments */
.service-hero { padding: 5rem 2rem; margin-bottom: 3.5rem; }
.trust-signals { margin-bottom: 3rem; }
.service-problem, .service-solution, .service-included, .service-process, .service-why { margin-bottom: 2.5rem; }
.service-pricing { margin-top: 2.5rem; margin-bottom: 3rem; }
.service-faq { margin-bottom: 3rem; }
.service-cta { margin-top: 3rem; padding: 4rem 2rem; }

/* Reduce grid gaps slightly for tighter, premium feel */
.trust-cards,
.problem-cards,
.solution-cards,
.included-grid,
.pricing-grid,
.service-why ul {
    gap: 1.5rem;
}

/* Center content blocks for better visual balance */
.service-page .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Fine-tune list spacing */
.service-page ul,
.service-page ol {
    max-width: 700px;
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Adjust final CTA button spacing */
.service-cta .cta-group {
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
/* Remove golden vertical line from all section headings */
.service-page h2 {
    border-left: none; /* remove old golden line */
    padding-left: 0;   /* remove extra padding */
}

/* Optional: add a subtle underline or decorative line */
.service-page h2::after {
    content: '';
    display: block;
    width: 60px;       /* adjust length */
    height: 3px;       /* thickness of line */
    background: #D4AF37; /* golden accent line */
    margin: 0.5rem auto 0; /* center under heading */
    border-radius: 2px;
}
/* ===============================
   FLOATING CTA
=============================== */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #FFD700; /* Gold for visibility */
    color: #145C45; /* Dark green text */
    font-weight: 700;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    opacity: 0; /* start hidden */
    transform: translateY(20px);
    animation: slideUpFadeCTA 0.8s ease-out forwards;
    animation-delay: 1s; /* shows after hero load */
}

/* Hover effect */
.floating-cta:hover {
    background-color: #FFC700; /* slightly brighter gold */
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.2);
}

/* Slide-up + fade-in animation */
@keyframes slideUpFadeCTA {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulsing glow animation */
.floating-cta.visible {
    animation: none; /* Stop initial slide animation */
    box-shadow: 0 10px 25px rgba(0,0,0,0.15), 0 0 15px rgba(255, 215, 0, 0.6);
    animation: pulseGlow 2.5s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 10px 25px rgba(0,0,0,0.15), 0 0 10px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 10px 25px rgba(0,0,0,0.15), 0 0 20px rgba(255, 215, 0, 0.8);
    }
    100% {
        box-shadow: 0 10px 25px rgba(0,0,0,0.15), 0 0 10px rgba(255, 215, 0, 0.4);
    }
}

html {
    scroll-behavior: smooth;
}

/* ===============================
   MOBILE ENHANCEMENTS – BREATHING SPACE
=============================== */
@media (max-width: 768px) {

    /* Increase spacing between paragraphs */
    .service-page p {
        margin-bottom: 1.5rem; /* more breathing room */
        line-height: 1.8; /* better readability */
    }

    /* Section headings spacing */
    .service-page h2,
    .service-page h3 {
        margin-bottom: 1.8rem;
        line-height: 1.4;
    }

    /* Hero section padding */
    .service-hero {
        padding: 5rem 1.5rem;
    }

    /* Statement blocks */
    .statement {
        padding: 1.8rem 2rem;
        font-size: 1.2rem;
        max-width: 95%;
        margin: 2.5rem auto;
    }

    /* Cards: 2 per row with breathing space */
    .trust-cards,
    .solution-cards,
    .problem-cards,
    .included-grid,
    .pricing-cards,
    .service-why ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        justify-items: center;
    }

    /* Individual cards padding */
    .trust-card,
    .solution-card,
    .problem-card,
    .included-item,
    .pricing-box,
    .service-why li {
        padding: 1.5rem;
    }

    /* Process steps spacing */
    .process-steps li {
        margin-bottom: 1.5rem;
        padding: 1.2rem;
    }

    /* Why Kissor Digital cards width */
    .service-why li {
        flex: unset;
        width: 100%;
        max-width: 400px;
    }

    /* Pricing section padding */
    .service-pricing {
        padding: 2.5rem 1.5rem;
    }

    /* Final CTA spacing */
    .service-cta {
        padding: 4.5rem 1.5rem;
    }
}

/* Extra small screens: single column for tiny devices */
@media (max-width: 480px) {
    .trust-cards,
    .solution-cards,
    .problem-cards,
    .included-grid,
    .pricing-cards,
    .service-why ul {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .service-page p {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    .service-hero h1 {
        font-size: 1.9rem;
    }

    .service-hero p {
        font-size: 1.1rem;
    }
}
/* ===============================
   MOBILE – 2 COLUMNS FOR CARDS ONLY
=============================== */
@media (max-width: 768px) {
    .trust-cards,
    .solution-cards,
    .problem-cards,
    .included-grid,
    .pricing-cards,
    .service-why ul {
        grid-template-columns: repeat(2, 1fr); /* force 2 columns */
        gap: 1.5rem;
        justify-items: center;
    }
}
/* ===============================
   MOBILE FINAL CTA BUTTONS STACK
=============================== */
@media (max-width: 768px) {
    .service-cta .cta-group .btn {
        padding: 1rem 1.5rem;  /* increase vertical padding for easier tapping */
        font-size: 1.125rem;   /* slightly larger text for readability */
        border-radius: 12px;   /* slightly rounder corners for a premium feel */
    }
}
.trust-icon {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", system-ui;
    font-size: 2.5rem;
    line-height: 1;
}
.trust-flag {
    width: 36px;
    height: auto;
    margin-bottom: 0.75rem;
}
/* ============================================================
   BREADCRUMBS – HARD VISIBILITY FIX
   ============================================================ */

.breadcrumbs {
    position: relative; /* start non-sticky */
    z-index: 1200;
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 0.9rem;
    background: #ffffff;
}

/* Sticky state (activated by JS / observer) */
.breadcrumbs.sticky-active {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ============================================================
   1. CONTEXTUAL INTERNAL LINKS (INLINE TEXT LINKS)
   Used inside paragraphs for SEO + natural flow
   ============================================================ */

.service-page p a {
    color: #1E7A60;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

/* Animated underline effect */
.service-page p a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #1E7A60, #D4AF37);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-page p a:hover::after {
    transform: scaleX(1);
}


/* ============================================================
   2. STICKY INTERNAL SERVICE LINKS (SCROLL NAV)
   Appears below breadcrumbs
   ============================================================ */

.service-internal-links {
    position: sticky;
    top: 52px; /* MUST match breadcrumb height */
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    z-index: 90;
}

.service-internal-links a {
    padding: 0.6rem 1rem;
    border-radius: 20px;
    background: #f4f6f5;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0D1F1A;
    transition: all 0.2s ease;
}

.service-internal-links a:hover {
    background: #1E7A60;
    color: #ffffff;
}


/* ===============================
   Related Services - Premium Version
=============================== */
.related-services {
    margin-top: 4rem;
    padding: 2.5rem 2rem;
    background: #f9fafb; /* soft neutral background */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    color: #0D1F1A;
    text-align: center;
}

.related-services h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #145C45;
}

.related-services-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.related-services-list li {
    flex: 1 1 220px;
    max-width: 250px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.related-services-list li img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.related-services-list li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.2rem;
    background: #ffffff;
    border-radius: 12px;
    color: #145C45;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.related-services-list li a:hover {
    background: #D4AF37; /* gold highlight */
    color: #0D1F1A;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.related-services .btn-outline {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 2.5rem;
    border: 2px solid #145C45;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #145C45;
    text-decoration: none;
    background: transparent;
    transition: all 0.3s ease, box-shadow 0.3s ease;
}

.related-services .btn-outline:hover {
    background: #145C45;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
