/* ===============================
   ROOT VARIABLES
================================ */
:root {
    --primary: #122d3b;
    --accent: #1cc6ce;
    --nav-bg: rgba(18, 45, 59, 0.65);
    --nav-solid: #122d3b;
    --text-light: #ffffff;
    --glow: rgba(28, 198, 206, 0.45);
    --section-bg: #f7f9fc;
}

/* DARK THEME */
body.dark-theme {
    --primary: #e6f1f5;
    --accent: #1cc6ce;
    --nav-bg: rgba(8, 20, 26, 0.8);
    --nav-solid: #08141a;
    --section-bg: #122d3b;
    --text-light: #ffffff;
    --glow: rgba(28, 198, 206, 0.45);
}

/* ===============================
   NAVBAR BASE
================================ */
.premium-navbar {
    background: var(--nav-bg);
    backdrop-filter: blur(14px);
    padding: 14px 0;
    transition: all 0.35s ease;
    position: fixed;
    width: 100%;
}

/* accent glow line */
.premium-navbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.4;
}

/* shrink on scroll */
.premium-navbar.scrolled {
    background: var(--nav-solid);
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===============================
   BRAND
================================ */
.navbar-brand {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent) !important;
    letter-spacing: 1px;
    transition: 0.3s;
}

.navbar-brand:hover {
    color: #fff !important;
}

/* ===============================
   NAV LINKS
================================ */
.nav-link {
    color: var(--text-light) !important;
    margin-left: 22px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* elegant underline */
.nav-link::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent) !important;
}

/* ===============================
   CTA BUTTON
================================ */
.nav-cta {
    background: linear-gradient(135deg, var(--accent), #12a9b0);
    color: var(--primary);
    border-radius: 40px;
    padding: 10px 26px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

/* glow hover */
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--glow);
    color: var(--primary);
}

/* ===============================
   MOBILE
================================ */
.navbar-toggler {
    border: none;
    color: white;
    font-size: 26px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* mobile menu */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--nav-solid);
        padding: 25px;
        border-radius: 14px;
        margin-top: 12px;
    }

    .nav-link {
        margin: 12px 0;
    }

    .nav-cta {
        margin-top: 10px;
        display: inline-block;
        text-align: center;
    }
}
/* ===============================
   HERO SECTION
================================ */
.premium-hero {
    padding-top: 140px;
    padding-bottom: 90px;
    color: white;
    position: relative;
    overflow: hidden;

    /* layered background */
    background:
        linear-gradient(rgba(18, 45, 59, 0.92), rgba(14, 34, 45, 0.94)),
        url("https://images.unsplash.com/photo-1558655146-d09347e92766?q=80&w=1600")
            center/cover no-repeat;
}

/* subtle glow orb */
.premium-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(28, 198, 206, 0.08);
    border-radius: 50%;
    top: -120px;
    right: -120px;
    filter: blur(80px);
}

/* layout */
.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* content */
.hero-content {
    flex: 1;
    min-width: 280px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.accent-text {
    color: var(--accent);
}

.hero-content p {
    max-width: 520px;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* buttons */
.hero-buttons {
    margin-bottom: 30px;
}

.hero-btn-primary {
    background: var(--accent);
    color: var(--primary);
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    margin-right: 12px;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.hero-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    padding: 14px 28px;
    border-radius: 40px;
}

.hero-btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* stats */
.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 14px;
}

.hero-stats strong {
    font-size: 20px;
    display: block;
}

/* right glass card */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    padding: 35px;
    border-radius: 20px;
    max-width: 320px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.hero-glass-card h3 {
    margin-bottom: 15px;
}

.hero-glass-card ul {
    list-style: none;
    padding: 0;
}

.hero-glass-card li {
    padding: 6px 0;
    font-size: 14px;
}

/* mobile */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .hero-stats {
        gap: 20px;
    }
}
/* SECTION BACKGROUND */
.brand-impact {
    background: linear-gradient(to bottom, #f7f9fc, #ffffff);
}

/* TEXT STYLES */
.trust-line {
    font-size: 14px;
    letter-spacing: 1px;
    color: #6b7280;
}

.section-title {
    font-size: 34px;
    color: #122d3b;
}

.section-subtitle {
    max-width: 620px;
    margin: auto;
    color: #6b7280;
}

/* CARD */
.impact-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* hover lift */
.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* accent line */
.impact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30%;
    width: 40%;
    height: 3px;
    background: var(--accent);
    opacity: 0;
    transition: 0.3s;
}

.impact-card:hover::before {
    opacity: 1;
}

/* ICON */
.impact-icon {
    font-size: 34px;
    color: var(--accent);
    margin-bottom: 15px;
}

/* TITLE */
.impact-card h5 {
    color: #122d3b;
    margin-bottom: 10px;
}

/* TEXT */
.impact-card p {
    color: #6b7280;
    font-size: 15px;
}
body.dark-theme .brand-impact {
    background: #0b1c24;
}

body.dark-theme .impact-card {
    background: #122d3b;
    color: #e6f1f5;
}

body.dark-theme .impact-card p,
body.dark-theme .section-subtitle,
body.dark-theme .trust-line {
    color: #9fb7c2;
}
body.dark-theme .impact-card h5 {
    color: #ffffff;
    margin-bottom: 10px;
}
/* ===============================
   PORTFOLIO SECTION
================================ */

.portfolio-section {
    background: #ffffff;
}

.section-title {
    font-size: 34px;
    color: #122d3b;
}

.section-subtitle {
    color: #6b7280;
    max-width: 620px;
    margin: auto;
}

/* portfolio item */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    height: 220px;
}

/* image */
.portfolio-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
}

/* zoom hover */
.portfolio-item:hover img {
    transform: scale(1.1);
}

/* overlay */
.portfolio-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(18, 45, 59, 0.9);
    color: white;
    text-align: center;
    padding: 15px;
    transform: translateY(100%);
    transition: 0.35s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h5 {
    margin: 0;
}
body.dark-theme .portfolio-section {
    background: #0b1c24;
}

body.dark-theme .section-title {
    color: #e6f1f5;
}

body.dark-theme .section-subtitle {
    color: #9fb7c2;
}
/* ===============================
   PROCESS SECTION
================================ */

.process-section {
    background: linear-gradient(to bottom, #f7f9fc, #ffffff);
}

/* card */
.process-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: 0.35s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* icon */
.process-icon {
    font-size: 34px;
    color: var(--accent);
    margin-bottom: 15px;
}

/* title */
.process-card h5 {
    color: #122d3b;
    margin-bottom: 10px;
}

/* text */
.process-card p {
    color: #6b7280;
    font-size: 15px;
}
body.dark-theme .process-section {
    background: #0b1c24;
}

body.dark-theme .process-card {
    background: #122d3b;
    color: #e6f1f5;
}

body.dark-theme .process-card p {
    color: #9fb7c2;
}
/* ===============================
   BOOKING SECTION
================================ */

.booking-section {
    background: linear-gradient(to bottom, #ffffff, #f7f9fc);
}

/* checklist */
.booking-list {
    list-style: none;
    padding: 0;
}

.booking-list li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #374151;
}

.booking-list i {
    color: var(--accent);
    margin-right: 8px;
}

/* booking card */
.booking-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.35s ease;
}

.booking-card:hover {
    transform: translateY(-8px);
}

/* price */
.price .main {
    font-size: 38px;
    font-weight: 700;
    color: #122d3b;
}

.price .sub {
    display: block;
    color: #6b7280;
    font-size: 14px;
}

/* advance highlight */
.advance {
    margin: 18px 0;
    font-size: 18px;
}

/* button */
.booking-btn {
    background: linear-gradient(135deg, var(--accent), #12a9b0);
    color: var(--primary);
    border-radius: 40px;
    padding: 14px 28px;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: 0.3s;
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28, 198, 206, 0.4);
}

/* secure note */
.secure-note {
    margin-top: 15px;
    font-size: 13px;
    color: #6b7280;
}
/* ===============================
   PREMIUM PRICING CARD
================================ */
.pricing-section {
    background: var(--section-bg);
}
.premium-card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    border-radius: 22px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* soft glow border */
.premium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 1px;
    background: linear-gradient(
        120deg,
        transparent,
        var(--accent),
        transparent
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    z-index: -1;
    transition: 0.4s;
}

.premium-card:hover::before {
    opacity: 1;
}

/* hover lift */
.premium-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}
/* Premium H4 Title */
.pricing-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.4px;
    transition: 0.3s ease;
}

/* Accent underline */
.pricing-card h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 48px;
    height: 3px;
    border-radius: 10px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--glow);
    transition: 0.3s ease;
}

/* Hover interaction */
.pricing-card:hover h4 {
    color: var(--accent);
}

.pricing-card:hover h4::after {
    width: 70px;
}

/* featured highlight */
.featured-card {
    transform: scale(1.05);
    background: linear-gradient(
        180deg,
        rgba(28, 198, 206, 0.12),
        rgba(255, 255, 255, 0.85)
    );
}

/* ribbon badge */
.ribbon {
    position: absolute;
    top: 18px;
    right: -35px;
    background: var(--accent);
    color: var(--primary);
    padding: 6px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
}

/* price */
.price {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    margin: 10px 0 5px;
    letter-spacing: 0.5px;
    line-height: 1;
    position: relative;
    display: inline-block;
}

/* currency style */
.price::first-letter {
    font-size: 36px;
    font-weight: 600;
    margin-right: 2px;
    color: var(--accent);
}

/* subtle glow highlight */
.pricing-card:hover .price {
    color: var(--accent);
    text-shadow: 0 0 12px var(--glow);
    transition: 0.3s ease;
}
body.dark-theme .price {
    color: var(--primary);
}
.delivery {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

/* features */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
    text-align: left;
}

.feature-list li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #374151;
}

.feature-list i {
    color: var(--accent);
    margin-right: 8px;
}

/* premium button */
.premium-btn {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;

    /* subtle glow */
    box-shadow:
        0 0 0 rgba(28, 198, 206, 0),
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 0 12px rgba(28, 198, 206, 0.25);
}

/* hover glow enhancement */
.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.15),
        0 0 18px rgba(28, 198, 206, 0.45),
        0 0 30px rgba(28, 198, 206, 0.35);
}

/* soft shine sweep */
.premium-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-25deg);
    transition: 0.6s;
}

.premium-btn:hover::after {
    left: 130%;
}

@media (max-width: 480px) {
    .premium-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 14px;
    }
}

body.dark-theme .premium-btn {
    color: #08141a;
}

body.dark-theme .premium-card {
    background: rgba(18, 45, 59, 0.75);
    color: #e6f1f5;
}

body.dark-theme .price {
    color: #e6f1f5;
}

body.dark-theme .feature-list li,
body.dark-theme .delivery {
    color: #9fb7c2;
}
body.dark-theme .premium-card {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
body.dark-theme .pricing-section {
    background: #122d3b;
}
@media (max-width: 768px) {
    .price {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .price {
        font-size: 24px;
    }
}

/* ===============================
   TESTIMONIAL SECTION
================================ */

.testimonial-section {
    background: linear-gradient(to bottom, #ffffff, #f7f9fc);
}

/* card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

/* text */
.testimonial-text {
    font-size: 15px;
    color: #374151;
    margin-bottom: 18px;
    line-height: 1.7;
}

/* stars */
.stars {
    color: #ffc107;
    margin-bottom: 18px;
}

/* client */
.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.client-info strong {
    display: block;
    color: #122d3b;
}

.client-info span {
    font-size: 13px;
    color: #6b7280;
}
body.dark-theme .testimonial-section {
    background: #0b1c24;
}

body.dark-theme .testimonial-card {
    background: rgba(18, 45, 59, 0.7);
}

body.dark-theme .testimonial-text,
body.dark-theme .client-info span {
    color: #9fb7c2;
}

body.dark-theme .client-info strong {
    color: #e6f1f5;
}
/* ===============================
   FAQ SECTION
================================ */

.faq-section {
    background: linear-gradient(to bottom, #f7f9fc, #ffffff);
}

/* accordion styling */
.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.custom-accordion .accordion-button {
    background: #ffffff;
    font-weight: 500;
    color: #122d3b;
    padding: 18px 20px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: rgba(28, 198, 206, 0.08);
    color: #122d3b;
    box-shadow: none;
}

.custom-accordion .accordion-body {
    background: #ffffff;
    color: #4b5563;
    line-height: 1.6;
}
body.dark-theme .faq-section {
    background: #0b1c24;
}

body.dark-theme .accordion-button,
body.dark-theme .accordion-body {
    background: #122d3b;
    color: #e6f1f5;
}
/* ===============================
   FINAL CTA SECTION
================================ */

.final-cta {
    background: linear-gradient(135deg, #122d3b, #0e222d);
    color: white;
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
}

/* soft glow */
.final-cta::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(28, 198, 206, 0.08);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    filter: blur(80px);
}

/* heading */
.final-cta h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

/* subtitle */
.cta-sub {
    max-width: 620px;
    margin: auto;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* trust */
.cta-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 14px;
}

.cta-trust i {
    color: var(--accent);
    margin-right: 6px;
}

/* buttons */
.cta-buttons {
    margin-bottom: 20px;
}

.cta-primary {
    background: var(--accent);
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    margin-right: 10px;
    transition: 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(28, 198, 206, 0.4);
}

.cta-outline {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
    padding: 14px 30px;
    border-radius: 40px;
}

.cta-outline:hover {
    background: white;
    color: var(--primary);
}

/* urgency */
.cta-urgency {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.85;
}
/* ===============================
   PREMIUM FOOTER
================================ */

.premium-footer {
    background: #0e222d;
    color: #cbd5e1;
    padding: 70px 0 25px;
}

/* logo */
.footer-logo {
    color: var(--accent);
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
}

/* titles */
.footer-title {
    color: white;
    margin-bottom: 15px;
}

/* links */
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

/* contact icons */
.footer-contact i {
    margin-right: 8px;
    color: var(--accent);
}

/* social icons */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-right: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--accent);
    color: var(--primary);
}

/* bottom */
.footer-bottom {
    text-align: center;
    font-size: 13px;
    margin-top: 15px;
    color: #94a3b8;
}

hr {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 30px 0 15px;
}
/* ===============================
   LOGO CAROUSEL
================================ */

.client-logos {
    background: var(--section-bg);
    overflow: hidden;
}

.logo-title {
    font-size: 14px;
    letter-spacing: 1px;
    color: #6b7280;
}

/* logo container */
.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 0px;
}

/* logo size */
.logo-item img {
    height: 100%;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.75;
    border-radius: 20px;
    transition: 0.3s ease;
    box-shadow: 1px 2px 4px;
}

/* hover */
.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* remove owl dots */
.owl-dots {
    display: none;
}
body.dark-theme .logo-title {
    color: #9fb7c2;
}

/* ===============================
   BEFORE & AFTER SECTION
================================ */

.before-after-section {
    background: linear-gradient(to bottom, #ffffff, #f7f9fc);
}

/* card container */
.ba-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.ba-card img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.ba-card:hover img {
    transform: scale(1.05);
}

/* highlight after */
.ba-card.highlight {
    transform: scale(1.02);
}

/* labels */
.label {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.before-label {
    background: rgba(0, 0, 0, 0.6);
    color: white;
}

.after-label {
    background: var(--accent);
    color: var(--primary);
}
body.dark-theme .before-after-section {
    background: #0b1c24;
}
/* ===============================
   CREATIVE SHOWCASE
================================ */

.creative-showcase {
    background: #ffffff;
}

/* scrolling container */
.creative-scroll {
    overflow: hidden;
    position: relative;
    margin-top: 10px;
}

/* moving track */
.creative-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scrollCreatives 28s linear infinite;
}

/* images */
.creative-track img {
    height: 260px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

/* hover pause & zoom */
.creative-track img:hover {
    transform: scale(1.08);
}

/* animation */
@keyframes scrollCreatives {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
body.dark-theme .creative-showcase {
    background: #0b1c24;
}
/* theme toggle button */
.theme-toggle {
          background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    margin-left: 15px;
    position: absolute;
    cursor: pointer;
    transition: 0.3s;
    right: 10px;
    top: 7px;
}

.theme-toggle:hover {
        color: var(--accent);
}
.pricing-card,
.process-card,
.testimonial-card,
.impact-card {
    background: var(--card-bg);
}
* {
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}
.booking-modal {
    border-radius: 18px;
    overflow: hidden;
}
#bookingForm{
    padding:25px;
}
/* remove default icon */
.custom-close {
  background: none;
  opacity: 1;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
position: absolute;
top: 7px;
right: 7px;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 0 12px var(--glow);
  transition: 0.3s ease;
}

/* icon size */
.custom-close i {
  font-size: 26px;
  line-height: 1;
}

/* hover effect */
.custom-close:hover {
  transform: rotate(90deg) scale(1.08);
  box-shadow: 0 0 18px var(--glow);
}

/* focus state */
.custom-close:focus {
  box-shadow: 0 0 0 3px rgba(28,198,206,0.25);
}

.package-details {
    background: linear-gradient(135deg, #122d3b, #0e222d);
}

.modal-price {
    font-size: 36px;
    font-weight: 700;
    margin: 10px 0;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.package-features li {
    margin-bottom: 10px;
    opacity: 0.9;
}

.advance-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 10px;
    font-weight: 500;
}

.form-side {
    background: var(--card-bg);
}

.booking-btn {
    background: linear-gradient(135deg, var(--accent), #12a9b0);
    border: none;
    color: var(--primary);
    padding: 14px;
    border-radius: 40px;
    font-weight: 600;
}

.secure-note {
    font-size: 13px;
    color: #6b7280;
}

@media (max-width: 991px) {
    .premium-navbar {
        padding: 10px 20px;
    }

    .navbar-brand {
        font-size: 22px;
    }

    .navbar-collapse {
        text-align: center;
    }

    .nav-link {
        margin: 10px 0;
        font-size: 16px;
    }

    .nav-cta {
        width: 100%;
        padding: 12px;
    }
}
@media (max-width: 991px) {
    .premium-hero {
        padding-top: 120px;
        text-align: center;
    }

    .hero-grid {
        flex-direction: column;
    }

    .hero-buttons a {
        display: block;
        margin-bottom: 10px;
    }

    .hero-visual {
        margin-top: 30px;
    }

    .hero-glass-card {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-stats {
        justify-content: center;
        text-align: center;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
        margin-bottom: 10px;
    }
    .hero-stats .stat-item {
        padding: 20px 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 13px;
        width: 30%;
    }
    .trust-line {
        font-size: 12px;
    }
    .section-subtitle {
        color: #6b7280;
        max-width: 620px;
        margin: auto;
        font-size: 12px;
        width: 90%;
        margin-bottom: 20px !important;
    }
    .package-features {
        display: none;
    }
    .modal-price {
        display: none;
    }
    .form-side {
        background: var(--card-bg);
        padding: 0px !important;
    }
    .hero-stats strong {
        font-size: 18px;
        display: block;
    }
}
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-badge {
        font-size: 12px;
    }

    .section-title {
        font-size: 26px;
    }

    .stat-item span {
        font-size: 12px;
    }
    .hero-visual {
        margin-top: 10px;
    }
}
@media (max-width: 768px) {
    .impact-card,
    .process-card,
    .testimonial-card,
    .premium-card {
        padding: 25px 20px;
    }
    .portfolio-item {
        height: 220px;
    }
}
@media (max-width: 991px) {
    .featured-card {
        transform: scale(1);
    }

    .price {
        font-size: 34px;
    }
}
@media (max-width: 768px) {
    .creative-track img {
        height: 180px;
    }
}
@media (max-width: 991px) {
    .package-details {
        text-align: center;
    }

    .booking-modal .row {
        flex-direction: column;
    }

    .modal-price {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .final-cta h2 {
        font-size: 28px;
    }

    .cta-buttons a {
        display: block;
        margin-bottom: 10px;
    }
    .premium-hero {
        padding-top: 100px;
        text-align: left;
    }
    .hero-badge {
        font-size: 10px;
        margin-bottom: 10px;
    }
    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
        width: 96%;
    }
    .hero-buttons a {
           display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    gap: 10px;
    width: 45%;
    margin-top: 10px;
    padding: 10px 30px;
    text-align: center;
    }

    .navbar-brand img {
        height: 25px;
    }
}

/* remove default border */
.custom-toggler {
     border: none;
    background: transparent;
    padding: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-right: 30px;
}

/* bars */
.custom-toggler .bar {
    width: 20px;
    height: 0.1rem;
    background: white;
    border-radius: 2px;
    transition: 0.3s ease;
}

/* animate when open */
.custom-toggler[aria-expanded="true"] .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}

.custom-toggler[aria-expanded="true"] .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ====================== */
/* social media  setup*/
/* ====================== */
/* HERO SECTION */
.sm-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #122d3b, #0e2531);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

/* Glow Accent */
.sm-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: var(--glow);
    filter: blur(120px);
    top: -120px;
    left: -120px;
    z-index: 0;
}

/* Badge */
.hero-badge {
    display: inline-block;
    background: rgba(28, 198, 206, 0.15);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

/* Title */
.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
}

.hero-title span {
    color: var(--accent);
}

/* Subtitle */
.hero-subtext {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    margin-bottom: 28px;
    max-width: 520px;
}

/* Buttons */
.hero-buttons {
    margin-bottom: 30px;
}

.btn-primary {
    background: #147378;
    color: var(--primary);
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 12px;
    display: inline-block;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px var(--glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px var(--glow);
}

.btn-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 12px 26px;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--primary);
}

/* Trust badges */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
}

/* Image Card */
.hero-image-card {
    /* background: rgba(255, 255, 255, 0.05); */
    padding: 18px;
    /* border-radius: 18px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25); */
}

.hero-image {
    width: 100%;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    .sm-hero::before{
        display: none;
    }

    .hero-trust {
        justify-content: center;
    }
}
.trust-bar {
    background: var(--section-bg);
    padding: 28px 0;
    position: relative;
}

/* subtle glow divider */
.trust-bar::before,
.trust-bar::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 2px;
    background: var(--glow);
    filter: blur(2px);
}

.trust-bar::before {
    top: 0;
}
.trust-bar::after {
    bottom: 0;
}

.trust-text {
    margin: 0;
    font-size: 17px;
    color: var(--primary);
    letter-spacing: 0.4px;
    font-weight: 500;
}

.trust-text span {
    color: var(--accent);
    font-weight: 600;
}

/* rating */
.trust-rating {
    margin-top: 8px;
    font-size: 14px;
    color: #f5a623;
    letter-spacing: 2px;
}

.trust-rating span {
    color: var(--primary);
    letter-spacing: normal;
    margin-left: 6px;
}
.impact-section {
    background: var(--section-bg);
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.section-subtitle {
    margin-top: 10px;
    color: #5f6b76;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* cards */
.impact-card {
    background: #fff;
    padding: 30px 24px;
    border-radius: 16px;
    transition: 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* glow accent line */
.impact-card::top {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
}

/* icon */
.impact-icon {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--accent);
    text-shadow: 0 0 12px var(--glow);
}

.impact-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.impact-card p {
    font-size: 15px;
    color: #6c757d;
}
.impact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(28, 198, 206, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--accent);
    box-shadow: 0 0 20px var(--glow);
}
/* DARK THEME SUPPORT */
body.dark-theme .impact-section {
    background: var(--section-bg);
}

body.dark-theme .section-title {
    color: var(--text-light);
}

body.dark-theme .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Dark cards */
body.dark-theme .impact-card {
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

body.dark-theme .impact-card:hover {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
    transform: translateY(-6px);
}

/* Dark text */
body.dark-theme .impact-card h5 {
    color: var(--text-light);
}

body.dark-theme .impact-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Icon glow enhancement */
body.dark-theme .impact-icon {
    background: rgba(28, 198, 206, 0.12);
    box-shadow: 0 0 25px var(--glow);
}
.social-proof-section {
    padding: 90px 0;
    background: var(--section-bg);
    overflow: hidden;
}

.phone-showcase {
    position: relative;
    margin-top: 50px;
}

/* PHONE */
.phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-mockup img {
    width: 260px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25));
}

/* SLIDER AREA */
.post-slider {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.post-track {
    display: flex;
    gap: 20px;
    animation: scrollPosts 18s linear infinite;
}

/* POST CARDS */
.post-card {
    min-width: 220px;
    padding: 16px 18px;
    background: #fff;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
}

/* animation */
@keyframes scrollPosts {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* social media flow */

/* SECTION */
.social-flow-section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

/* WRAPPER */
.flow-wrapper {
    position: relative;
    margin-top: 120px;
}
/* STRIP POSTS */
.social-strip .post {
    display: flex;
    justify-content: center;
}

.social-strip img {
    width: 256px !important;
    height: auto;
    object-fit: cover;

    transition: 0.4s ease;
    opacity: 0.55;
    transform: scale(0.82);
}

/* CENTER IMAGE FOCUS */
.social-strip .owl-item.center img {
    opacity: 1;
    transform: scale(1);
}

/* smooth alignment */
.owl-stage {
    display: flex;
    align-items: center;
}

/* DARK MODE */
body.dark-theme .social-flow-section {
    background: var(--section-bg);
}
/* PHONE POSITION */
/* PHONE POSITION */
.phone-overlay {
    position: absolute;
    top: 68%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    pointer-events: none;
}

/* PHONE FRAME */
.phone-frame {
    width: 260px;
    height: 500px;
    border-radius: 40px;
    position: relative;
    background: transparent;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

/* CREATE BEZEL FRAME */
.phone-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 40px;
    border: 14px solid #0a0a0a; /* phone body */
}

/* INNER SCREEN BORDER */
.phone-frame::after {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 28px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.9);
}

/* NOTCH */
.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 22px;
    background: #0a0a0a;
    border-radius: 0 0 16px 16px;
}
/* laptops */
@media (max-width: 1200px) {
    .phone-frame {
        width: 230px;
        height: 380px;
    }

    .phone-notch {
        width: 95px;
        height: 18px;
    }

    .social-strip img {
        width: 220px !important;
        height: auto;
    }
}

/* tablets */
@media (max-width: 992px) {
    .phone-frame {
        width: 200px;
        height: 340px;
    }

    .phone-notch {
        width: 80px;
        height: 16px;
    }

    .social-strip img {
        width: 190px !important;
        height: auto;
    }
}

/* large mobile */
@media (max-width: 768px) {
    .phone-frame {
        width: 170px;
        height: 300px;
    }

    .phone-notch {
        width: 65px;
        height: 14px;
    }

    .social-strip img {
        width: 160px !important;
        height: auto;
    }
}

/* small mobile */
@media (max-width: 480px) {
    .phone-frame {
        width: 132px;
        height: 260px;
    }

    .phone-notch {
        width: 55px;
        height: 12px;
    }

    .social-strip img {
        width: 120px !important;
        height: auto;
    }
    .phone-frame::after {
        inset: 8px;
        border-radius: 33px;
    }
    .phone-frame::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 40px;
        border: 7px solid #0a0a0a;
    }
    .social-flow-section {
        padding: 18px 0;
        overflow: hidden;
        position: relative;
    }
}

/* =================================
   DARK THEME SUPPORT
================================= */
body.dark-theme .social-flow-section {
    background: var(--section-bg);
}
/* PROCESS SECTION */
.process-section {
    padding: 90px 0;
    background: var(--section-bg);
}

.process-card {
    background: #fff;
    padding: 28px 20px;
    border-radius: 16px;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.process-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: rgba(28, 198, 206, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--accent);
    box-shadow: 0 0 18px var(--glow);
}

.process-card h6 {
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--primary);
}

.process-card p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* DARK MODE */
body.dark-theme .process-card {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

body.dark-theme .process-card p {
    color: rgba(255, 255, 255, 0.7);
}
body.dark-theme .process-card h6 {
    color: var(--text-light);
}
/* WORK SECTION */
.work-section {
    padding: 90px 0;
    background: var(--section-bg);
}

.work-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
}

.work-card img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s ease;
}

/* hover effect */
.work-card:hover img {
    transform: scale(1.08);
}

.work-card:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* optional overlay glow */
.work-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(28, 198, 206, 0.08);
    opacity: 0;
    transition: 0.3s ease;
}

.work-card:hover::after {
    opacity: 1;
}

/* DARK MODE */
body.dark-theme .work-card {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}
.before-after-section {
    padding: 100px 0;
    background: var(--section-bg);
}

/* benefits list */
.ba-benefits {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.ba-benefits li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
}

/* slider wrapper */
.ba-wrapper {
    max-width: 520px;
    margin: auto;
}

/* container */
.ba-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.ba-container img {
    display: block;
}

.ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
}

/* slider line */
.ba-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--accent);
    z-index: 2;
}

/* range input */
.ba-range {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: ew-resize;
}

/* labels */
.ba-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-weight: 600;
    color: var(--primary);
}

/* dark theme */
body.dark-theme .ba-benefits li,
body.dark-theme .ba-labels {
    color: var(--text-light);
}
/* CTA SECTION */
/* FULL WIDTH CTA */
.cta-full {
    background: linear-gradient(135deg, #122d3b, #0d3d50);
    padding: 60px 0;
    color: var(--text-light);
}

/* layout */
.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
}

/* text */
.cta-text h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-text p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.85);
}

/* price highlight */
.cta-price {
    font-size: 18px;
    margin-bottom: 6px;
}

.cta-price strong {
    color: var(--accent);
    font-size: 22px;
}

/* note */
.cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

/* buttons */
.cta-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: var(--accent);
    color: var(--primary);
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--glow);
}

.cta-btn-outline {
    border: 2px solid var(--accent);
    color: var(--text-light);
    padding: 11px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.cta-btn-outline:hover {
    background: var(--accent);
    color: var(--primary);
}

/* mobile */
@media (max-width: 768px) {
    .cta-content {
        text-align: center;
        justify-content: center;
    }

    .cta-actions {
        justify-content: center;
    }

    .cta-text h2 {
        font-size: 24px;
    }
    .sm-hero {
        padding: 70px 0px 10px;
    }
    .hero-badge {
        font-size: 10px;
        margin-bottom: 4px;
    }
    .sm-hero .hero-title {
        font-size: 24px;
        margin-bottom: 4px;
    }
    .hero-subtext {
        font-size: 11px;
        margin-bottom: 20px;
    }
    .trust-item {
           padding: 8px 6px;
    font-size: 10px;
    width: 32%;
    display: grid;
    align-items: center;
    }
    .hero-trust {
        gap: 4px;
    }
    .trust-text {
        font-size: 13px;
    }
}
@media (max-width: 992px) {
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }
    .impact-section {
        padding: 30px 0;
    }
    .flow-wrapper {
        margin-top: 70px;
    }
    .process-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 22px;
    }
}
@media (max-width: 1200px) {
    .work-section,
    .before-after-section {
        padding: 70px 0;
    }
}

/* tablets */
@media (max-width: 992px) {
    .work-section,
    .before-after-section {
        padding: 60px 0;
    }

    .ba-wrapper {
        max-width: 100%;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* mobile */
@media (max-width: 768px) {
    .work-section,
    .before-after-section {
        padding: 50px 0;
    }

    .work-card {
        border-radius: 14px;
    }

    .ba-benefits li {
        font-size: 14px;
    }

    .ba-container {
        border-radius: 14px;
    }

    .cta-text h2 {
        font-size: 24px;
    }

    .cta-price strong {
        font-size: 20px;
    }

    .cta-actions {
        width: 100%;
    }

    .cta-actions a {
        flex: 1;
        text-align: center;
    }
}

/* small mobile */
@media (max-width: 480px) {
    .work-section,
    .before-after-section {
        padding: 45px 0;
    }

    .work-card {
        border-radius: 12px;
    }

    .work-card:hover img {
        transform: none; /* disable zoom on small screens */
    }

    .ba-benefits li {
        font-size: 13px;
    }

    .ba-labels {
        font-size: 13px;
    }

    .ba-slider {
        width: 3px;
    }

    .cta-text h2 {
        font-size: 22px;
    }

    .cta-text p {
        font-size: 14px;
    }

    .cta-note {
        font-size: 13px;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        padding: 10px 18px;
        font-size: 14px;
    }
}
