/* ============================================================
   ScreenTouch – Modern UI Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;600;700;800&display=swap');

:root {
    --st-blue:    #1565C0;
    --st-blue2:   #1976D2;
    --st-pink:    #C2185B;
    --st-pink2:   #E91E63;
    --st-dark:    #0D1B2A;
    --st-dark2:   #1A2535;
    --st-gray:    #F4F6F9;
    --st-text:    #1e293b;
    --st-muted:   #64748b;
    --navbar-h:   76px;
    --radius:     14px;
    --shadow-sm:  0 2px 12px rgba(0,0,0,.07);
    --shadow-md:  0 8px 32px rgba(0,0,0,.12);
    --shadow-lg:  0 20px 60px rgba(0,0,0,.16);
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--st-text);
    background: #fff;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; }

/* ============================================================
   NAVBAR
   ============================================================ */

.main-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1050;
    height: var(--navbar-h);
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
    background: transparent;
}

.main-navbar.scrolled {
    background: rgba(13,27,42,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.main-navbar .navbar-brand img {
    height: 52px;
    transition: transform var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
}
.main-navbar .navbar-brand:hover img { transform: scale(1.05); }

.main-navbar .nav-link {
    color: rgba(255,255,255,.9) !important;
    font-weight: 500;
    font-size: .92rem;
    letter-spacing: .3px;
    padding: .5rem 1rem !important;
    position: relative;
    transition: color var(--transition);
}

.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: var(--st-pink2);
    border-radius: 2px;
    transition: left var(--transition), right var(--transition);
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
    left: 1rem; right: 1rem;
}

.main-navbar .nav-link.active { color: #fff !important; }

.navbar-cta {
    background: linear-gradient(135deg, var(--st-pink), var(--st-pink2));
    color: #fff !important;
    border-radius: 50px;
    padding: .45rem 1.3rem !important;
    font-weight: 600;
    font-size: .88rem;
    box-shadow: 0 4px 14px rgba(194,24,91,.4);
    transition: transform var(--transition), box-shadow var(--transition);
}
.navbar-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(194,24,91,.5); }
.navbar-cta::after { display: none !important; }

.nav-social a {
    color: rgba(255,255,255,.75);
    font-size: 1.05rem;
    transition: color var(--transition), transform var(--transition);
    display: inline-flex; align-items: center;
}
.nav-social a:hover { color: #fff; transform: scale(1.2); }

.navbar-toggler {
    border: none;
    color: #fff;
    padding: .3rem .5rem;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon-custom {
    display: flex; flex-direction: column; gap: 5px; cursor: pointer;
}
.navbar-toggler-icon-custom span {
    display: block; width: 24px; height: 2px;
    background: #fff; border-radius: 2px;
    transition: var(--transition);
}

/* mobile menu background */
@media (max-width: 991.98px) {
    .main-navbar .navbar-collapse.show,
    .main-navbar .navbar-collapse.collapsing {
        background: #2d2d2d;
        border-radius: 0 0 12px 12px;
        padding: 1rem 1.25rem 1.25rem;
        margin: 0 -12px;
        box-shadow: 0 8px 24px rgba(0,0,0,.4);
    }
}

/* page offset for fixed navbar on inner pages */
.page-hero { padding-top: calc(var(--navbar-h) + 3rem); }

/* ============================================================
   HERO SWIPER SLIDER
   ============================================================ */

.hero-swiper {
    height: 100vh;
    min-height: 620px;
    margin-top: calc(-1 * var(--navbar-h));
}

.hero-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Push content down so it clears the fixed navbar */
    padding-top: var(--navbar-h);
}

/* Slide 1 — deep dark navy (bold, high-contrast) */
.hero-slide-1 {
    background: linear-gradient(135deg, #020811 0%, #0D1B2A 40%, #0F2744 70%, #1565C0 100%);
}
/* Slide 2 — dark charcoal with radial glow (matches user's second splash screen) */
.hero-slide-2 {
    background: radial-gradient(ellipse at 60% 50%, #6e6e6e 0%, #4a4a4a 40%, #2e2e2e 100%);
}
/* Slide 3 — deep blue gradient CTA slide */
.hero-slide-3 { background: linear-gradient(135deg, #0D1B2A 0%, #1565C0 55%, #00ACC1 100%); }

/* dot grid pattern for slide 3 only */
.hero-bg-pattern {
    position: absolute; inset: 0;
    opacity: .06;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='2' fill='%23fff'/%3E%3C/svg%3E");
}

/* Radial glow overlay for dark slide */
.hero-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 55% 55% at 52% 48%, rgba(255,255,255,.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 860px;
}

/* ---- Logo sizes per slide ---- */
.hero-content .hero-logo {
    height: 130px;
    max-width: 360px;
    object-fit: contain;
    margin-bottom: 1.6rem;
    animation: floatLogo 4s ease-in-out infinite;
}

/* slide 1 logo — subtle glow on dark background */
.hero-slide-1 .hero-logo {
    filter: drop-shadow(0 4px 24px rgba(21,101,192,.5)) drop-shadow(0 2px 8px rgba(0,0,0,.5));
}
/* dark slide: faint outer glow */
.hero-slide-2 .hero-logo {
    filter: drop-shadow(0 0 40px rgba(255,255,255,.35)) drop-shadow(0 4px 12px rgba(0,0,0,.4));
    height: 150px;
}
/* blue slide */
.hero-slide-3 .hero-logo {
    filter: drop-shadow(0 6px 20px rgba(0,0,0,.45));
}

@keyframes floatLogo {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-badge {
    display: inline-block;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: .4rem 1.3rem;
    border-radius: 50px;
    margin-bottom: 1.4rem;
}
/* slide 1 badge — glass pill on dark */
.hero-slide-1 .hero-badge {
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
}
/* dark & blue slides badge */
.hero-slide-2 .hero-badge,
.hero-slide-3 .hero-badge {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
}

.hero-title {
    font-size: clamp(1.9rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

/* slide 1: white text on dark background */
.hero-slide-1 .hero-title { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.4); }
.hero-slide-1 .hero-title span {
    background: linear-gradient(90deg, #FFD54F, #FF8A65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* dark & blue slides: white text with golden accent */
.hero-slide-2 .hero-title,
.hero-slide-3 .hero-title { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.35); }
.hero-slide-2 .hero-title span,
.hero-slide-3 .hero-title span {
    background: linear-gradient(90deg, #FFD54F, #FF8A65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(.95rem, 2vw, 1.15rem);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.65;
}
.hero-slide-1 .hero-sub { color: rgba(255,255,255,.78); }
.hero-slide-2 .hero-sub,
.hero-slide-3 .hero-sub { color: rgba(255,255,255,.8); }

/* "The Perfect Touch for Your Brand." — top line on slides 1 & 2 */
.hero-top-line {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    font-weight: 500;
    letter-spacing: .5px;
    margin-bottom: 1.6rem;
}
.hero-slide-1 .hero-top-line { color: rgba(255,255,255,.82); }
.hero-slide-2 .hero-top-line { color: rgba(255,255,255,.85); }

/* "Designed To Be Remembered." — bottom tagline on slides 1 & 2 */
.hero-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.1rem, 2.4vw, 1.55rem);
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: .2rem;
    margin-bottom: 0;
}
.hero-slide-1 .hero-tagline { color: #00BFFF; }
.hero-slide-2 .hero-tagline { color: #29D8FF; }

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* slide 1 outline button — white on dark */
.hero-slide-1 .btn-hero-outline {
    color: #fff;
    border-color: rgba(255,255,255,.5);
}
.hero-slide-1 .btn-hero-outline:hover {
    background: rgba(255,255,255,.12);
    border-color: #fff;
    color: #fff;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--st-pink), var(--st-pink2));
    color: #fff;
    border: none;
    padding: .85rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .3px;
    box-shadow: 0 6px 24px rgba(194,24,91,.45);
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: .5rem;
}
.btn-hero-primary:hover { color:#fff; transform: translateY(-3px); box-shadow: 0 10px 32px rgba(194,24,91,.55); }

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.6);
    padding: .85rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: .5rem;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; color:#fff; transform: translateY(-3px); }

/* swiper nav */
.hero-swiper .swiper-pagination-bullet {
    width: 10px; height: 10px;
    background: rgba(255,255,255,.5);
    opacity: 1;
    transition: var(--transition);
}
.hero-swiper .swiper-pagination-bullet-active {
    background: #fff;
    width: 30px;
    border-radius: 5px;
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: rgba(255,255,255,.8);
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(4px);
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    transition: background var(--transition);
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after { font-size: 1rem; font-weight: 700; }
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover { background: rgba(255,255,255,.2); }

/* Floating shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    animation: heroFloat 8s ease-in-out infinite;
}
.hero-shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; animation-delay: 0s; }
.hero-shape-2 { width: 250px; height: 250px; bottom: -60px; left: -60px; animation-delay: 3s; }
.hero-shape-3 { width: 150px; height: 150px; top: 40%; left: 8%; animation-delay: 1.5s; }

@keyframes heroFloat {
    0%,100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* ============================================================
   STATS BAR
   ============================================================ */

.stats-bar {
    background: var(--st-dark);
    padding: 2rem 0;
}
.stat-item { text-align: center; }
.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #FFD54F, #FF8A65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat-label { color: rgba(255,255,255,.6); font-size: .85rem; margin-top: .3rem; letter-spacing: .5px; }
.stats-divider { width: 1px; background: rgba(255,255,255,.1); height: 50px; }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */

.section-tag {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--st-pink);
    background: rgba(194,24,91,.08);
    padding: .35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--st-text);
    line-height: 1.2;
}

.section-title span { color: var(--st-blue); }

.section-line {
    width: 56px; height: 4px;
    background: linear-gradient(90deg, var(--st-blue), var(--st-pink));
    border-radius: 2px;
    margin: 1rem 0;
}
.section-line.center { margin-left: auto; margin-right: auto; }

/* ============================================================
   OFFERS CAROUSEL
   ============================================================ */

.offers-section { background: var(--st-gray); padding: 5rem 0; }

.offer-swiper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.offer-swiper .swiper-slide img { width: 100%; height: 440px; object-fit: cover; }
.offer-swiper .swiper-pagination-bullet { background: var(--st-blue); }
.offer-swiper .swiper-pagination-bullet-active { background: var(--st-pink); width: 24px; border-radius: 4px; }

.offer-placeholder {
    height: 440px;
    background: linear-gradient(135deg, var(--st-blue), #00ACC1);
    display: flex; align-items: center; justify-content: center;
    color: #fff; text-align: center;
}

/* Empty state when no offers exist */
.offers-empty {
    border-radius: var(--radius);
    overflow: hidden;
}
.offers-empty-inner {
    background: linear-gradient(135deg, #0D1B2A 0%, #1565C0 60%, #00ACC1 100%);
    border-radius: var(--radius);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.offers-empty-inner::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='2' fill='%23fff' fill-opacity='.06'/%3E%3C/svg%3E");
}
.offers-empty-inner > * { position: relative; z-index: 1; }

.offers-empty-icon {
    width: 90px; height: 90px;
    background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.4rem; color: #FFD54F;
    margin: 0 auto 1.5rem;
}
.offers-empty-inner h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 1.5rem;
    margin-bottom: .75rem;
}
.offers-empty-inner p {
    color: rgba(255,255,255,.75);
    max-width: 500px; margin: 0 auto;
    line-height: 1.7; font-size: .95rem;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff; border: none;
    padding: .65rem 1.8rem;
    border-radius: 50px;
    font-weight: 600; font-size: .9rem;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none; display: inline-flex; align-items: center; gap: .5rem;
}
.btn-whatsapp:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.45); }

/* ============================================================
   ABOUT SECTION (home teaser)
   ============================================================ */

.about-section { padding: 5rem 0; }

.about-img-wrap {
    position: relative;
    padding-bottom: 30px;
    padding-right: 30px;
}
.about-img-wrap .main-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    height: 420px;
    display: block;
}
/* decorative border behind the photo */
.about-img-wrap::before {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: var(--radius);
    border: 3px solid var(--st-blue);
    opacity: .18;
    z-index: 0;
}
.about-badge-card {
    position: absolute;
    bottom: -20px; right: -20px;
    background: #fff;
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    min-width: 130px;
}
.about-badge-card .big-num {
    font-size: 2.2rem; font-weight: 800; font-family: 'Poppins', sans-serif;
    color: var(--st-blue); line-height: 1;
}
.about-badge-card .small-text { font-size: .75rem; color: var(--st-muted); font-weight: 500; margin-top: .2rem; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
    display: flex; align-items: flex-start; gap: .75rem;
    margin-bottom: .9rem; font-size: .95rem;
}
.check-list li i { color: var(--st-pink); font-size: 1.1rem; margin-top: .1rem; flex-shrink: 0; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */

.services-section { background: var(--st-gray); padding: 5rem 0; }

.service-card-new {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1.5px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--st-blue), var(--st-pink));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(21,101,192,.12);
}
.service-card-new:hover::before { transform: scaleX(1); }

.svc-icon-wrap {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, rgba(21,101,192,.1), rgba(194,24,91,.1));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.7rem;
    color: var(--st-blue);
    transition: background var(--transition), color var(--transition);
}
.service-card-new:hover .svc-icon-wrap {
    background: linear-gradient(135deg, var(--st-blue), var(--st-pink));
    color: #fff;
}

.service-card-new h6 {
    font-weight: 700; font-size: 1rem; margin-bottom: .5rem; color: var(--st-text);
}
.service-card-new p { font-size: .87rem; color: var(--st-muted); margin: 0; line-height: 1.6; }

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-section {
    background: linear-gradient(135deg, var(--st-dark) 0%, var(--st-blue) 60%, #00ACC1 100%);
    padding: 5rem 0;
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='1.5' fill='white' fill-opacity='0.06'/%3E%3C/svg%3E");
}
.cta-section .container { position: relative; z-index: 1; }
.cta-title { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; color: #fff; }
.cta-sub { color: rgba(255,255,255,.75); font-size: 1.05rem; }

.btn-cta {
    background: linear-gradient(135deg, var(--st-pink), var(--st-pink2));
    color: #fff; border: none;
    padding: .9rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 24px rgba(194,24,91,.5);
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none; display: inline-flex; align-items: center; gap: .5rem;
}
.btn-cta:hover { color:#fff; transform: translateY(-3px); box-shadow: 0 10px 32px rgba(194,24,91,.6); }

.btn-cta-outline {
    background: transparent;
    color: #fff; border: 2px solid rgba(255,255,255,.5);
    padding: .9rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    text-decoration: none; display: inline-flex; align-items: center; gap: .5rem;
}
.btn-cta-outline:hover { background: rgba(255,255,255,.1); border-color:#fff; color:#fff; transform: translateY(-3px); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */

.page-hero {
    background: linear-gradient(135deg, var(--st-dark) 0%, var(--st-blue) 70%);
    padding: 7rem 0 4rem;
    text-align: center;
    position: relative; overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,60 C400,0 800,0 1200,60 L1200,60 L0,60Z' fill='white'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: .5rem; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.05rem; }
.breadcrumb-nav { margin-top: 1rem; }
.breadcrumb-nav a, .breadcrumb-nav span {
    color: rgba(255,255,255,.65); font-size: .9rem; text-decoration: none;
}
.breadcrumb-nav .sep { margin: 0 .5rem; color: rgba(255,255,255,.4); }
.breadcrumb-nav .current { color: rgba(255,255,255,.9); }

/* ============================================================
   SERVICE DETAIL CARDS (services page)
   ============================================================ */

.service-detail-card {
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
    border: 1.5px solid #f0f0f0;
    height: 100%;
}
.service-detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(21,101,192,.15); }

.service-detail-card .card-body { padding: 2rem; }
.service-icon-lg {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(21,101,192,.12), rgba(194,24,91,.08));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--st-blue);
    margin-bottom: 1.2rem;
    transition: background var(--transition), color var(--transition);
}
.service-detail-card:hover .service-icon-lg {
    background: linear-gradient(135deg, var(--st-blue), var(--st-pink));
    color: #fff;
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-item-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    background: #fff;
}
.gallery-item-wrap:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.gallery-embed iframe { width: 100%; height: 100%; border: 0; }

.nav-tabs .nav-link {
    border: none; border-radius: 50px;
    color: var(--st-muted); font-weight: 600;
    padding: .6rem 1.6rem;
    transition: background var(--transition), color var(--transition);
}
.nav-tabs .nav-link.active {
    background: var(--st-blue);
    color: #fff;
    box-shadow: 0 4px 14px rgba(21,101,192,.35);
}
.nav-tabs { border-bottom: none; gap: .5rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-icon-box {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, rgba(21,101,192,.1), rgba(194,24,91,.08));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.works-chip {
    display: inline-flex; align-items: center; gap: .4rem;
    background: #fff;
    border: 1.5px solid rgba(21,101,192,.2);
    color: var(--st-blue);
    font-size: .85rem; font-weight: 600;
    padding: .45rem 1.1rem;
    border-radius: 50px;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}
.works-chip:hover { background: var(--st-blue); color: #fff; transform: translateY(-2px); }
.works-chip i { font-size: .75rem; }

/* ============================================================
   CONTACT
   ============================================================ */

.contact-icon-box {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, rgba(21,101,192,.1), rgba(194,24,91,.08));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.qr-img     { width: 100px; height: 100px; object-fit: contain; }
.qr-img-lg  { width: 130px; height: 130px; object-fit: contain; }

.btn-instagram {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    color:#fff; border:0;
}
.btn-instagram:hover { opacity: .9; color:#fff; }

.contact-info-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    border-left: 4px solid var(--st-blue);
    display: flex; align-items: flex-start; gap: 1rem;
    transition: box-shadow var(--transition), transform var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }

/* ============================================================
   FOOTER
   ============================================================ */

.footer-main {
    background: var(--st-dark);
    padding: 4.5rem 0 0;
}

.footer-logo img { height: 56px; filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,.3)); }
.footer-logo { margin-bottom: 1.2rem; }

.footer-desc { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.7; }

.footer-heading {
    color: #fff; font-weight: 700; font-size: 1rem;
    margin-bottom: 1.4rem; position: relative; padding-bottom: .8rem;
}
.footer-heading::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 36px; height: 3px;
    background: linear-gradient(90deg, var(--st-blue), var(--st-pink));
    border-radius: 2px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .65rem; }
.footer-links a {
    color: rgba(255,255,255,.55);
    text-decoration: none; font-size: .9rem;
    display: flex; align-items: center; gap: .5rem;
    transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-links a i { font-size: .7rem; }

.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.7);
    border: 1px solid rgba(255,255,255,.12);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer-social a:hover { background: var(--st-pink); color: #fff; transform: translateY(-3px); border-color: transparent; }

.footer-bank-item {
    display: flex; align-items: center; gap: .6rem;
    color: rgba(255,255,255,.6); font-size: .85rem; margin-bottom: .6rem;
}
.footer-bank-item i { color: var(--st-blue2); font-size: .9rem; }
.footer-bank-item strong { color: rgba(255,255,255,.85); }

.footer-bottom {
    background: rgba(0,0,0,.25);
    padding: 1.25rem 0;
    margin-top: 3rem;
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,.45); font-size: .83rem; }
.footer-bottom a { color: rgba(255,255,255,.45); text-decoration: none; transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,.85); }

/* ============================================================
   ADMIN CSS (keep existing, extend)
   ============================================================ */

/* ============================================================
   UTILITY / MISC
   ============================================================ */

.bg-st-gray { background: var(--st-gray); }

.btn-primary-st {
    background: linear-gradient(135deg, var(--st-blue), var(--st-blue2));
    color: #fff; border: none;
    padding: .65rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none; display: inline-flex; align-items: center; gap: .5rem;
}
.btn-primary-st:hover { color:#fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,101,192,.4); }

.btn-pink-st {
    background: linear-gradient(135deg, var(--st-pink), var(--st-pink2));
    color: #fff; border: none;
    padding: .65rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none; display: inline-flex; align-items: center; gap: .5rem;
}
.btn-pink-st:hover { color:#fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(194,24,91,.45); }

/* welcome-img fallback */
.welcome-img { border-radius: var(--radius); }

/* AOS fallback */
[data-aos] { transition-property: opacity, transform; }
