/* css/style.css */
/* Core premium design system for Color 'n' Design Digital Marketing Website */

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

:root {
    --primary-color: #024430;
    --primary-hover: #055e43;
    --accent-color: #06d6a0;
    --accent-dark: #05b88a;
    --dark-bg: #111827;
    --light-bg: #f8fafc;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    --border-color: #e2e8f0;
    --text-main: #334155;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --font-main: 'Manrope', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* --- Utility Typography --- */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
}

.text-center { text-align: center; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mt-10 { margin-top: 10px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.py-80 { padding-top: 80px; padding-bottom: 80px; }
.py-60 { padding-top: 60px; padding-bottom: 60px; }

/* --- Container & Layout --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-brand-1 {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-brand-1:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 68, 48, 0.2);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 214, 160, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-tag {
    display: inline-block;
    background-color: rgba(6, 214, 160, 0.12);
    color: var(--primary-color);
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* --- Sticky Header --- */
header.header {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.header-logo img {
    height: 48px;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
}

/* Main Navigation Menu */
.main-menu {
    display: flex;
    list-style: none;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    display: block;
    padding: 30px 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.main-menu > li:hover > a {
    color: var(--primary-color);
}

/* Submenu Dropdowns */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    min-width: 250px;
    padding: 15px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    z-index: 10;
}

.main-menu > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
}

.sub-menu li a:hover {
    color: var(--primary-color);
    background-color: rgba(6, 214, 160, 0.06);
    padding-left: 30px;
}

/* Hamburger & Mobile Toggle */
.burger-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    margin-left: 20px;
}

.burger-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* --- Mobile Navigation Drawer --- */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    padding: 40px 30px;
    overflow-y: auto;
    transition: var(--transition-smooth);
}

.mobile-nav-drawer.active {
    right: 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-drawer-header img {
    height: 40px;
}

.close-drawer-btn {
    font-size: 28px;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-menu-links {
    list-style: none;
}

.mobile-menu-links > li {
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.mobile-menu-links > li > a {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-submenu-trigger {
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
}

.mobile-sub-menu {
    list-style: none;
    padding-left: 15px;
    margin-top: 8px;
    display: none;
}

.mobile-sub-menu li {
    padding: 8px 0;
}

.mobile-sub-menu li a {
    font-size: 14px;
    color: var(--text-muted);
}

.mobile-sub-menu li a:hover {
    color: var(--primary-color);
}

/* --- Hero Slider Area --- */
.hero-slider-section {
    position: relative;
    background-color: var(--light-bg);
    overflow: hidden;
    height: 600px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    max-width: 650px;
}

.slide h1 {
    font-size: 54px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.15;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.slide.active h1 {
    opacity: 1;
    transform: translateY(0);
}

.slide p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.4s;
}

.slide.active p {
    opacity: 1;
    transform: translateY(0);
}

.slide .btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.6s;
}

.slide.active .btn {
    opacity: 1;
    transform: translateY(0);
}

.slide-image-wrapper {
    display: flex;
    justify-content: flex-end;
}

.slide-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    color: var(--primary-color);
    font-size: 20px;
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.arrow-prev { left: 30px; }
.arrow-next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(2, 68, 48, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    width: 25px;
    border-radius: 10px;
    background-color: var(--primary-color);
}

/* --- Trust & Callback Section --- */
.trust-callback-section {
    background-color: var(--light-bg);
}

.callback-form-box {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.callback-form-box h3 {
    font-size: 26px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.callback-form-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    font-family: var(--font-main);
    border: 1px solid var(--border-color);
    background-color: var(--light-bg);
    border-radius: 8px;
    outline: none;
    transition: var(--transition-smooth);
    color: var(--text-dark);
}

.form-control:focus {
    border-color: var(--primary-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(2, 68, 48, 0.05);
}

textarea.form-control {
    resize: none;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 4px;
}

.alert-msg {
    margin-top: 15px;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* --- 360° Marketing Services --- */
.services-center-section {
    background-color: #ffffff;
}

.services-layout-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px 1fr;
    gap: 20px;
    align-items: center;
}

.services-col-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services-col-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card-become {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition-smooth);
}

.card-become:hover {
    transform: translateY(-3px);
}

.card-become h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.card-become p {
    font-size: 14px;
    color: var(--text-muted);
}

.services-col-left .card-become {
    text-align: right;
}

.services-col-right .card-become {
    text-align: left;
}

.services-center-graphic {
    text-align: center;
}

.services-center-graphic img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(2, 68, 48, 0.08));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --- Why Choose Us --- */
.why-choose-section {
    background-color: var(--light-bg);
}

.why-choose-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.list-ticks {
    list-style: none;
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.list-ticks li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.list-ticks li svg {
    color: var(--accent-color);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* --- Custom Services Grid --- */
.custom-services-grid {
    background-color: #ffffff;
}

.card-offer {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-offer:hover {
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(6, 214, 160, 0.05);
    transform: translateY(-5px);
}

.card-offer h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.card-offer p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.explore-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.explore-link svg {
    transition: var(--transition-smooth);
}

.explore-link:hover svg {
    transform: translateX(4px);
}

/* --- Call to Action Banner --- */
.cta-banner-section {
    background-color: var(--primary-color);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-banner-section h2 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
}

.cta-banner-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    max-width: 600px;
}

.cta-banner-image {
    max-width: 100%;
    border-radius: 12px;
}

/* --- Client Logobar Carousel --- */
.client-logo-section {
    padding: 50px 0;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.marquee-container {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    position: relative;
}

.marquee-inner {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee-inner img {
    height: 45px;
    margin: 0 40px;
    opacity: 0.65;
    transition: var(--transition-smooth);
    display: inline-block;
    vertical-align: middle;
}

.marquee-inner img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* --- Testimonials Section --- */
.testimonials-section {
    background-color: var(--light-bg);
}

.testimonial-track {
    overflow: hidden;
    position: relative;
}

.testimonial-cards-wrapper {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.card-testimonial-grid {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.02);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.box-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 15px;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.card-bottom-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.date-post {
    font-size: 12px;
    color: var(--text-muted);
}

.rating img {
    height: 14px;
}

/* --- Premium Footer --- */
footer.footer-area {
    background-color: var(--dark-bg);
    color: #94a3b8;
    padding-top: 80px;
    padding-bottom: 40px;
}

footer.footer-area h5 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-desc {
    margin-top: 20px;
    font-size: 14px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    font-size: 14px;
}

.footer-links li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact-info {
    list-style: none;
    font-size: 14px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact-info li svg {
    color: var(--accent-color);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 60px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

/* --- Dynamic Service Detail Page --- */
.service-hero-section {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.service-hero-section h1 {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 15px;
}

.service-hero-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.service-content-body {
    font-size: 16px;
    color: var(--text-main);
}

.service-content-body h1, .service-content-body h2, .service-content-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content-body p {
    margin-bottom: 20px;
}

.service-content-body ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-content-body li {
    margin-bottom: 8px;
}

/* --- Responsive Adaptations --- */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-layout-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    .services-center-graphic {
        display: none;
    }
    .card-testimonial-grid {
        flex: 0 0 calc(50% - 15px);
    }
    .hero-slider-section {
        height: auto;
        padding: 60px 0;
    }
    .slide {
        position: relative;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    .slide.active {
        display: flex;
    }
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .slide-image-wrapper {
        justify-content: center;
        margin-top: 30px;
    }
    .slider-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .burger-icon {
        display: flex;
    }
    .main-menu, .d-sm-inline-block {
        display: none !important;
    }
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    .slide h1 {
        font-size: 34px;
    }
    .cta-banner-section h2 {
        font-size: 30px;
    }
    .card-become {
        text-align: left !important;
    }
    .card-testimonial-grid {
        flex: 0 0 100%;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ================================================
   FLOATING CALL + WHATSAPP BAR (BrandStory Style)
   ================================================ */
.floating-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111827;
    z-index: 9999;
    padding: 0;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-main);
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-smooth);
    flex: 1;
    letter-spacing: 0.3px;
}

.float-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-btn-icon svg {
    width: 22px;
    height: 22px;
}

.float-call-btn {
    background-color: #024430;
}

.float-call-btn:hover {
    background-color: #055e43;
    color: #ffffff;
}

.float-wa-btn {
    background-color: #25D366;
}

.float-wa-btn:hover {
    background-color: #1ebe5d;
    color: #ffffff;
}

.float-divider {
    color: rgba(255,255,255,0.25);
    font-size: 24px;
    font-weight: 300;
    flex-shrink: 0;
}

/* Push page content above floating bar */
body {
    padding-bottom: 58px;
}

/* ================================================
   FOOTER SOCIAL ICONS
   ================================================ */
.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.08);
    color: #94a3b8;
    transition: var(--transition-smooth);
}

.social-icon-link svg {
    width: 16px;
    height: 16px;
}

.social-icon-link:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ================================================
   FOOTER QUICK CTA BUTTONS
   ================================================ */
.footer-quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-main);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.footer-quick-btn svg {
    width: 15px;
    height: 15px;
}

.footer-quick-call {
    background-color: rgba(255,255,255,0.1);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
}

.footer-quick-call:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.footer-quick-wa {
    background-color: #25D366;
    color: #ffffff;
}

.footer-quick-wa:hover {
    background-color: #1ebe5d;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ================================================
   STATS / COUNTER SECTION
   ================================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #055e43 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    color: #ffffff;
    padding: 20px 10px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat-suffix {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    margin-top: 5px;
}

/* ================================================
   OUR PROCESS SECTION
   ================================================ */
.process-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-steps-grid::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), var(--primary-color));
    z-index: 0;
}

.process-step {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.process-step:hover {
    box-shadow: 0 15px 40px rgba(2, 68, 48, 0.08);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.process-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #055e43);
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(2, 68, 48, 0.25);
}

.process-step h4 {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================================================
   FAQ / ACCORDION SECTION
   ================================================ */
.faq-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.open {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(2,68,48,0.06);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-main);
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.faq-item.open .faq-icon {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ================================================
   ENHANCED SERVICE PAGE STYLES
   ================================================ */
.service-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #055e43 100%);
    padding: 90px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.service-hero-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(6,214,160,0.06);
    pointer-events: none;
}

/* Service Detail - Feature Cards Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.service-feature-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.service-feature-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 30px rgba(6,214,160,0.08);
    transform: translateY(-3px);
}

.service-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), #055e43);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-feature-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.service-feature-card h5 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================================================
   RESPONSIVE - FLOATING BAR & NEW SECTIONS
   ================================================ */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps-grid::before {
        display: none;
    }
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-number {
        font-size: 36px;
    }
    .stat-item:not(:last-child)::after {
        display: none;
    }
    .process-steps-grid {
        grid-template-columns: 1fr;
    }
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    .float-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    .float-btn-label {
        display: inline;
    }
    .d-none-mobile {
        display: none !important;
    }
}



/* ================================================
   SERVICE PAGE — HERO ENHANCED
   ================================================ */
.service-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #055e43 60%, #024430 100%);
    padding: 70px 0 60px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.service-hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(6,214,160,0.06);
    pointer-events: none;
}

.service-hero-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}

.service-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.service-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.service-hero-breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.service-hero-breadcrumb a:hover {
    color: var(--accent-color);
}

.service-hero-section h1 {
    color: #ffffff;
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.service-hero-section p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    max-width: 680px;
    margin: 0 0 30px;
    line-height: 1.7;
}

.service-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ================================================
   SERVICE PAGE — BODY LAYOUT
   ================================================ */
.service-page-body {
    background-color: #f8fafc;
    padding: 60px 0 80px;
}

.service-page-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.service-main-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-color);
}

/* ================================================
   SERVICE PAGE — SIDEBAR
   ================================================ */
.service-sidebar {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-cta-card {
    background: var(--primary-color);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    color: #ffffff;
}

.sidebar-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.sidebar-cta-icon svg {
    width: 26px;
    height: 26px;
    color: var(--accent-color);
}

.sidebar-cta-card h4 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 10px;
}

.sidebar-cta-card p {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sidebar-call-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 700;
}

.sidebar-call-link svg {
    width: 18px;
    height: 18px;
}

.sidebar-services-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border-color);
}

.sidebar-services-card h5 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-color);
}

.sidebar-services-card ul {
    list-style: none;
}

.sidebar-services-card ul li {
    border-bottom: 1px solid var(--border-color);
}

.sidebar-services-card ul li:last-child {
    border-bottom: none;
}

.sidebar-services-card ul li a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.sidebar-services-card ul li a::before {
    content: '›';
    color: var(--accent-color);
    font-size: 18px;
    margin-right: 8px;
    font-weight: 700;
}

.sidebar-services-card ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.sidebar-trust-card {
    background: linear-gradient(135deg, var(--primary-color), #055e43);
    border-radius: 12px;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
}

.sidebar-trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-trust-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-color);
}

.sidebar-trust-label {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    line-height: 1.3;
}

/* ================================================
   SP- (SERVICE PAGE CONTENT) COMPONENTS
   ================================================ */
.sp-badge {
    display: inline-block;
    background: rgba(6,214,160,0.12);
    color: var(--primary-color);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.sp-intro-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.sp-intro-text h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.sp-intro-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.sp-intro-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.sp-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-wa {
    background-color: #25D366;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
}

.btn-wa:hover {
    background-color: #1ebe5d;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-call {
    background-color: var(--primary-color);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
}

.btn-call:hover {
    background-color: var(--primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
}

/* SP Stats Row */
.sp-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: linear-gradient(135deg, var(--primary-color), #055e43);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 50px;
    text-align: center;
}

.sp-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.sp-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}

.sp-stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.sp-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

/* SP Section Titles */
.sp-section-title {
    font-size: 28px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 10px;
}

.sp-section-sub {
    font-size: 15px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 35px;
}

/* SP Features Grid */
.sp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.sp-feature-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.sp-feature-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 30px rgba(6,214,160,0.08);
    transform: translateY(-3px);
    background: #ffffff;
}

.sp-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), #055e43);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.sp-feature-icon svg {
    width: 22px;
    height: 22px;
    color: #ffffff;
}

.sp-feature-card h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.sp-feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* SP Why Block */
.sp-why-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--light-bg);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid var(--border-color);
}

.sp-why-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.sp-why-content h2 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.3;
}

.sp-why-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.sp-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sp-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.sp-checklist li svg {
    width: 18px;
    height: 18px;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

/* SP Process Block */
.sp-process-block {
    margin-bottom: 50px;
}

.sp-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.sp-process-step {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-smooth);
}

.sp-process-step:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 30px rgba(2,68,48,0.06);
    transform: translateY(-3px);
}

.sp-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #055e43);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.sp-process-step h4 {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.sp-process-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* SP FAQ Block */
.sp-faq-block {
    margin-bottom: 50px;
}

.sp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}

.sp-faq-item {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.sp-faq-item.open {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(2,68,48,0.06);
}

.sp-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-main);
    transition: var(--transition-smooth);
}

.sp-faq-q:hover {
    color: var(--primary-color);
}

.sp-faq-q span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.sp-faq-item.open .sp-faq-q span {
    background: var(--primary-color);
    color: #ffffff;
    transform: rotate(45deg);
}

.sp-faq-a {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.sp-faq-item.open .sp-faq-a {
    max-height: 300px;
    padding: 0 22px 18px;
}

.sp-faq-a p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* SP Bottom CTA */
.sp-bottom-cta {
    background: linear-gradient(135deg, var(--primary-color), #055e43);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    color: #ffffff;
}

.sp-bottom-cta h2 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 14px;
}

.sp-bottom-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.sp-bottom-cta .sp-cta-row {
    justify-content: center;
}

/* ================================================
   RESPONSIVE — SERVICE PAGE
   ================================================ */
@media (max-width: 1024px) {
    .service-page-layout {
        grid-template-columns: 1fr;
    }
    .service-sidebar {
        position: static;
    }
    .sidebar-trust-card {
        grid-template-columns: repeat(3, 1fr);
    }
    .sp-intro-block {
        grid-template-columns: 1fr;
    }
    .sp-intro-image {
        order: -1;
    }
    .sp-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .sp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sp-why-block {
        grid-template-columns: 1fr;
    }
    .sp-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero-section h1 {
        font-size: 28px;
    }
    .service-hero-btns {
        flex-direction: column;
    }
    .service-main-content {
        padding: 24px 20px;
    }
    .sp-stats-row {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    .sp-stat-num {
        font-size: 28px;
    }
    .sp-features-grid {
        grid-template-columns: 1fr;
    }
    .sp-process-grid {
        grid-template-columns: 1fr;
    }
    .sp-bottom-cta {
        padding: 30px 20px;
    }
    .sp-bottom-cta h2 {
        font-size: 22px;
    }
    .sp-bottom-cta .sp-cta-row {
        flex-direction: column;
        align-items: center;
    }
}

/* ================================================
   D-NONE-MOBILE UTILITY
   ================================================ */
@media (max-width: 768px) {
    .d-none-mobile {
        display: none !important;
    }
}
