/* =====================================================
   FROGDYS.COM.TR - Ana Stil Dosyası
   ===================================================== */

/* =====================================================
   SPLASH SCREEN
   ===================================================== */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.splash-logo {
    max-width: 560px;
    max-height: 560px;
    width: 40vw;
    object-fit: contain;
    animation: splashPulse 2s ease-in-out infinite;
}

@keyframes splashPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}

.splash-fade-out {
    animation: splashFadeOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes splashFadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; pointer-events: none; }
}

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

/* === CSS Custom Properties === */
:root {
    /* Marka Renkleri */
    --primary: #2ecc71;
    --primary-dark: #27ae60;
    --primary-light: #a3f5c5;
    --primary-gradient: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);

    /* Koyu Tema */
    --dark: #0f1923;
    --dark-light: #1a2938;
    --dark-card: #1e3148;
    --dark-surface: #243b55;

    /* Nötr Renkler */
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;

    /* Accent */
    --accent-blue: #3498db;
    --accent-purple: #9b59b6;
    --accent-orange: #f39c12;
    --accent-red: #e74c3c;

    /* Dark theme extras (blog cards) */
    --dark-border: rgba(255, 255, 255, 0.08);
    --gradient-primary: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);

    /* Tipografi */
    --font-primary: 'Inter', -apple-system, sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 15px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(46, 204, 113, 0.3);

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Base Reset === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar-frog {
    background: rgba(15, 25, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

.navbar-frog.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-frog .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-frog .navbar-brand .brand-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.navbar-frog .navbar-brand span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.navbar-frog.scrolled .brand-logo {
    height: 50px;
}

.footer-brand .brand-logo {
    height: 76px;
}

.navbar-frog .nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 18px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.navbar-frog .nav-link:hover,
.navbar-frog .nav-link.active {
    color: var(--white) !important;
    background: rgba(46, 204, 113, 0.15);
}

.navbar-frog .nav-link.active {
    color: var(--primary) !important;
}

.btn-demo-nav {
    background: var(--primary-gradient) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-xl) !important;
    border: none;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    transition: var(--transition);
}

.btn-demo-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.4);
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* =====================================================
   HERO SLIDER
   ===================================================== */
.hero-slider-section {
    position: relative;
    z-index: 1;
    background: var(--dark);
}

.hero-slider-section .carousel-inner {
    background: var(--dark);
}

.hero-slide {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 25, 35, 0.85) 0%, rgba(15, 25, 35, 0.6) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding-top: 80px;
}

/* Carousel Controls */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(46, 204, 113, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    opacity: 0.7;
    transition: var(--transition);
    bottom: auto;
}

#heroCarousel .carousel-control-prev {
    left: 30px;
}

#heroCarousel .carousel-control-next {
    right: 30px;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    opacity: 1;
    background: rgba(46, 204, 113, 0.4);
}

/* Carousel Indicators */
#heroCarousel .carousel-indicators {
    bottom: 30px;
    z-index: 10;
}

#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    opacity: 0.7;
    margin: 0 6px;
    transition: var(--transition);
}

#heroCarousel .carousel-indicators button.active {
    background: var(--primary);
    border-color: var(--primary);
    opacity: 1;
    transform: scale(1.2);
}

/* Carousel Slide Transition */
.carousel-item {
    transition: transform 0.8s ease-in-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, #58d68d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 14px 36px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.35);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.45);
    color: var(--white);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 36px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-hero-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* =====================================================
   SECTION STYLES
   ===================================================== */
.section-padding {
    padding: var(--section-padding);
}

.section-title-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(46, 204, 113, 0.1);
    color: var(--primary-dark);
    padding: 6px 18px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-heading .text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   WMS SHOWCASE SECTION
   ===================================================== */
.wms-showcase-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.wms-showcase-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.wms-features-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.wms-feature-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.wms-feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.1);
    transform: translateY(-4px);
}

.wms-feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wms-feature-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.wms-feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.wms-feature-text p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.wms-phone-wrapper {
    text-align: center;
    position: relative;
}

.wms-phone-img {
    max-height: 550px;
    width: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.25));
    transition: var(--transition-slow);
}

.wms-phone-img:hover {
    transform: translateY(-8px);
    filter: drop-shadow(0 30px 80px rgba(46, 204, 113, 0.2));
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services-section {
    background: var(--gray-50);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(46, 204, 113, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 1.6rem;
    color: var(--primary-dark);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-gradient);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card:hover .service-img,
.service-card:hover .service-icon img {
    filter: brightness(0) invert(1);
}

.service-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.service-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary);
    gap: 10px;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper .about-img-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-badge-float {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.about-badge-float .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    display: block;
}

.about-badge-float .label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.about-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.about-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-feature-list li i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Stats Counter */
.stats-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
   REFERENCES SECTION
   ===================================================== */
.references-section {
    background: var(--white);
}

/* --- Grid Layout --- */
.ref-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* --- Card Base --- */
.ref-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ref-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), #3b82f6, var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.ref-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(46, 204, 113, 0.1);
    border-color: transparent;
}

.ref-card:hover::before {
    opacity: 1;
}

/* --- Shine Effect --- */
.ref-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: none;
    pointer-events: none;
    z-index: 2;
}

.ref-card:hover .ref-card-shine {
    animation: shineRef 0.8s ease forwards;
}

@keyframes shineRef {
    0%   { left: -100%; }
    100% { left: 150%; }
}

/* --- Card Inner --- */
.ref-card-inner {
    position: relative;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    z-index: 1;
}

/* --- Logo Area --- */
.ref-logo-area {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    padding: 16px;
    transition: all 0.4s ease;
}

.ref-card:hover .ref-logo-area {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.04), rgba(59, 130, 246, 0.04));
    border-color: rgba(46, 204, 113, 0.2);
    transform: scale(1.05);
}

.ref-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: grayscale(30%);
}

.ref-card:hover .ref-logo-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.ref-logo-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(46, 204, 113, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ref-logo-placeholder i {
    font-size: 1.6rem;
    color: var(--primary);
}

/* --- Info --- */
.ref-info {
    flex: 1;
}

.ref-company {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.ref-card:hover .ref-company {
    color: var(--primary-dark);
}

.ref-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- External Link --- */
.ref-link {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    color: var(--gray-500);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 3;
    opacity: 0;
    transform: translateY(4px);
}

.ref-card:hover .ref-link {
    opacity: 1;
    transform: translateY(0);
}

.ref-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

/* --- Statistics Bar --- */
.ref-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-top: 64px;
    padding: 40px 48px;
    background: linear-gradient(135deg, var(--dark) 0%, #1a2332 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.ref-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.ref-stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.ref-stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.ref-stat-number span {
    font-size: 1.6rem;
    opacity: 0.7;
}

.ref-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ref-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

/* --- CTA --- */
.ref-cta {
    margin-top: 48px;
}

.ref-cta-content {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 36px 44px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.ref-cta-content:hover {
    border-color: rgba(46, 204, 113, 0.3);
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.06);
}

.ref-cta-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(46, 204, 113, 0.2);
}

.ref-cta-icon i {
    font-size: 1.6rem;
    color: #fff;
}

.ref-cta-text {
    flex: 1;
}

.ref-cta-text h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--gray-800);
}

.ref-cta-text p {
    font-size: 0.92rem;
    color: var(--gray-500);
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .ref-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .ref-stats {
        gap: 32px;
        padding: 32px 36px;
    }
    .ref-stat-number {
        font-size: 2rem;
    }
    .ref-cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .ref-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .ref-card-inner {
        padding: 24px 20px;
    }
    .ref-logo-area {
        width: 100px;
        height: 100px;
    }
    .ref-stats {
        flex-direction: column;
        gap: 24px;
        padding: 32px 24px;
    }
    .ref-stat-divider {
        width: 50px;
        height: 1px;
    }
    .ref-cta-content {
        padding: 28px 24px;
    }
}

/* =====================================================
   CONTACT / DEMO SECTION
   ===================================================== */
.contact-section {
    background: var(--gray-50);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(46, 204, 113, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.2rem;
    color: var(--primary);
}

.contact-info-item h6 {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-info-item p {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.contact-info-item a {
    color: var(--white);
}

.contact-info-item a:hover {
    color: var(--primary);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.form-control-custom {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--gray-800);
}

.form-control-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.1);
    background: var(--white);
}

.form-label-custom {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.btn-submit {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 14px 40px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    width: 100%;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.35);
    color: var(--white);
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-section {
    background: var(--white);
}

.accordion-frog .accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-frog .accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    background: var(--white);
    padding: 18px 24px;
    box-shadow: none;
}

.accordion-frog .accordion-button:not(.collapsed) {
    background: rgba(46, 204, 113, 0.05);
    color: var(--primary-dark);
}

.accordion-frog .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232ecc71' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-frog .accordion-body {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
    padding: 0 24px 18px;
}

/* =====================================================
   PAGE HEADER (Inner pages)
   ===================================================== */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-header .breadcrumb-custom {
    display: flex;
    gap: 8px;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-header .breadcrumb-custom li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.page-header .breadcrumb-custom li a {
    color: var(--primary);
}

.page-header .breadcrumb-custom li a:hover {
    color: var(--primary-light);
}

.page-header .breadcrumb-custom .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* =====================================================
   SERVICE DETAIL PAGE
   ===================================================== */
.service-detail-content {
    padding: 60px 0 100px;
}

.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.service-detail-card .detail-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-detail-card .detail-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-detail-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-detail-card p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray-600);
}

.service-sidebar-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 20px;
}

.service-sidebar-card h5 {
    font-size: 1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
}

.service-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-sidebar-list li {
    margin-bottom: 4px;
}

.service-sidebar-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}

.service-sidebar-list li a:hover,
.service-sidebar-list li a.active {
    background: rgba(46, 204, 113, 0.1);
    color: var(--primary-dark);
}

.service-sidebar-list li a i {
    font-size: 0.7rem;
    color: var(--primary);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand .brand-icon {
    width: 38px;
    height: 38px;
    background: var(--primary-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.footer-brand span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer h5 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links li a i {
    font-size: 0.7rem;
    color: var(--primary);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact-item a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    margin-top: 50px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   ALERT / SUCCESS MESSAGE
   ===================================================== */
.alert-success-custom {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: var(--primary-dark);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =====================================================
   BLOG CARDS
   ===================================================== */
.blog-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 2;
}

.blog-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.15);
}

.blog-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.blog-card-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.15);
    color: var(--primary);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: fit-content;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-card:hover .blog-card-title {
    color: var(--primary-light);
}

.blog-card-summary {
    color: var(--gray-400);
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.7;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    border-top: 1px solid var(--dark-border);
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-card-meta span {
    color: var(--gray-500);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta span i {
    color: var(--primary);
    font-size: 0.9rem;
}

.blog-card-readmore {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.blog-card:hover .blog-card-readmore {
    gap: 10px;
}

.blog-card-readmore i {
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-readmore i {
    transform: translateX(4px);
}

/* =====================================================
   BLOG SEARCH BAR
   ===================================================== */
.blog-search-wrapper {
    max-width: 520px;
    margin: 0 auto 40px;
}

.blog-search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-search-icon {
    position: absolute;
    left: 20px;
    font-size: 1.1rem;
    color: var(--gray-400);
    pointer-events: none;
    transition: color 0.3s;
}

.blog-search-input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    color: var(--dark);
    background: var(--white);
    transition: all 0.3s ease;
    outline: none;
}

.blog-search-input::placeholder {
    color: var(--gray-400);
}

.blog-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.1);
}

.blog-search-input:focus ~ .blog-search-icon,
.blog-search-box:focus-within .blog-search-icon {
    color: var(--primary);
}

/* =====================================================
   BLOG DETAIL — Category Badge
   ===================================================== */
.blog-detail-category-badge {
    display: inline-block;
    background: rgba(46, 204, 113, 0.1);
    color: var(--primary-dark);
    padding: 3px 12px;
    border-radius: 16px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-right: 4px;
}

/* =====================================================
   BLOG DETAIL PAGE
   ===================================================== */
.blog-detail-section {
    padding: 60px 0 100px;
}

.blog-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.blog-detail-hero {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
}

.blog-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-detail-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 28px 40px 0;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 20px;
}

.blog-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.blog-detail-meta-item i {
    color: var(--primary);
    font-size: 1.05rem;
}

.blog-detail-content {
    padding: 32px 40px;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray-700);
}

.blog-detail-content p {
    margin-bottom: 20px;
}

.blog-detail-content h2,
.blog-detail-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

/* Share */
.blog-detail-share {
    padding: 20px 40px 32px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.blog-detail-share-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

.blog-detail-share-links {
    display: flex;
    gap: 10px;
}

.blog-detail-share-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.blog-detail-share-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(46, 204, 113, 0.3);
}

/* Back link */
.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.2);
    transition: all 0.3s;
}

.blog-back-link:hover {
    background: rgba(46, 204, 113, 0.15);
    border-color: var(--primary);
    color: var(--primary-dark);
    transform: translateX(-4px);
}

/* --- Sidebar --- */
.blog-sidebar-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.blog-sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gray-200);
    position: relative;
}

.blog-sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

/* Author card */
.blog-sidebar-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.blog-sidebar-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

/* Recent posts */
.blog-sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.blog-sidebar-post-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    text-decoration: none;
}

.blog-sidebar-post-item:hover {
    background: var(--gray-50);
    transform: translateX(4px);
}

.blog-sidebar-post-img {
    width: 64px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-sidebar-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-sidebar-post-placeholder {
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-sidebar-post-placeholder i {
    color: var(--gray-400);
    font-size: 1.2rem;
}

.blog-sidebar-post-info h6 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.blog-sidebar-post-item:hover .blog-sidebar-post-info h6 {
    color: var(--primary-dark);
}

.blog-sidebar-post-info small {
    color: var(--gray-500);
    font-size: 0.78rem;
}

/* Category */
.blog-sidebar-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 204, 113, 0.08);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 600;
}

.blog-sidebar-category i {
    font-size: 0.9rem;
}

.blog-sidebar-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(59, 130, 246, 0.08);
    color: #2563eb;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.blog-sidebar-tag:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-1px);
}

.blog-sidebar-tag i {
    font-size: 0.8rem;
}

/* --- Responsive --- */
@media (max-width: 767.98px) {
    .blog-card-image {
        height: 180px;
    }

    .blog-card-body {
        padding: 20px 24px 24px;
    }

    .blog-detail-meta {
        padding: 20px 24px 16px;
    }

    .blog-detail-content {
        padding: 24px;
        font-size: 1rem;
    }

    .blog-detail-share {
        padding: 16px 24px 24px;
    }

    .blog-detail-hero {
        max-height: 280px;
    }
}



/* =====================================================
   RESPONSIVE — Comprehensive Mobile Support
   ===================================================== */

/* ---- Tablet landscape (≤992px) ---- */
@media (max-width: 991.98px) {
    .splash-logo {
        max-width: 280px;
        width: 50vw;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .navbar-frog .navbar-collapse {
        background: var(--dark);
        margin-top: 15px;
        padding: 15px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.08);
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-frog .nav-link {
        padding: 10px 16px !important;
        font-size: 0.85rem;
    }

    .btn-demo-nav {
        margin-top: 8px;
        text-align: center;
        display: block !important;
    }

    .wms-showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .wms-phone-wrapper {
        order: -1;
    }

    .wms-phone-img {
        max-height: 400px;
    }

    .hero-slide-content {
        max-width: 100%;
    }

    .brand-logo {
        height: 44px;
    }

    .footer .row > div {
        margin-bottom: 24px;
    }
}

/* ---- Tablet portrait / Mobile landscape (≤768px) ---- */
@media (max-width: 767.98px) {
    :root {
        --section-padding: 60px 0;
    }

    .splash-logo {
        max-width: 180px;
        width: 45vw;
    }

    .hero-slide {
        min-height: 85vh;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.92rem;
        margin-bottom: 28px;
        line-height: 1.7;
    }

    .hero-slide-content {
        padding-top: 60px;
        max-width: 100%;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 12px 28px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    /* Carousel controls */
    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    #heroCarousel .carousel-control-prev {
        left: 10px;
    }

    #heroCarousel .carousel-control-next {
        right: 10px;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .section-title-center {
        margin-bottom: 36px;
    }

    .section-desc {
        font-size: 0.92rem;
    }

    .section-badge {
        font-size: 0.72rem;
        padding: 5px 14px;
    }

    .brand-logo {
        height: 40px;
    }

    .navbar-frog.scrolled .brand-logo {
        height: 36px;
    }

    /* WMS */
    .wms-phone-img {
        max-height: 300px;
    }

    .wms-feature-card {
        padding: 16px;
        gap: 14px;
    }

    .wms-feature-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .wms-feature-text h4 {
        font-size: 1rem;
    }

    .wms-feature-text p {
        font-size: 0.82rem;
    }

    /* Services */
    .service-card {
        padding: 24px 20px;
    }

    .service-card h4 {
        font-size: 1.05rem;
    }

    /* Stats */
    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.78rem;
    }

    .stats-section {
        padding: 50px 0;
    }

    .stat-item {
        padding: 12px 8px;
    }

    /* About */
    .about-badge-float {
        position: relative;
        bottom: auto;
        right: auto;
        display: inline-block;
        margin-top: 16px;
    }

    /* Contact */
    .contact-info-card {
        padding: 28px;
        margin-bottom: 24px;
    }

    .contact-form-card {
        padding: 28px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 0;
    }

    .footer-brand .brand-logo {
        height: 56px;
    }

    .footer-bottom {
        margin-top: 32px;
        padding: 20px 0;
    }

    /* Page header */
    .page-header {
        padding: 110px 0 50px;
    }

    .page-header h1 {
        font-size: 1.7rem;
    }

    /* Service detail */
    .service-detail-card {
        padding: 24px;
    }

    .service-detail-content {
        padding: 40px 0 60px;
    }

    .service-detail-card h2 {
        font-size: 1.5rem;
    }

    .service-detail-card p {
        font-size: 0.95rem;
    }

    /* Blog detail */
    .blog-detail-meta {
        padding: 20px 20px 16px;
        gap: 16px;
    }

    .blog-detail-content {
        padding: 20px;
        font-size: 0.95rem;
    }

    .blog-detail-share {
        padding: 16px 20px 20px;
    }

    .blog-detail-hero {
        max-height: 240px;
    }

    /* Blog cards */
    .blog-card-image {
        height: 160px;
    }

    .blog-card-body {
        padding: 16px 18px 20px;
    }

    .blog-card-title {
        font-size: 1rem;
    }

    /* FAQ */
    .accordion-frog .accordion-button {
        font-size: 0.9rem;
        padding: 14px 18px;
    }

    .accordion-frog .accordion-body {
        padding: 0 18px 14px;
        font-size: 0.88rem;
    }

    /* Hero features */
    .hero-feature-item i {
        font-size: 1.6rem;
    }

    .hero-feature-item h5 {
        font-size: 0.9rem;
    }

    .hero-feature-item {
        padding: 16px 12px;
    }

    /* References */
    .ref-stats {
        flex-direction: column;
        gap: 20px;
        padding: 28px 20px;
    }

    .ref-stat-divider {
        width: 50px;
        height: 1px;
    }

    .ref-stat-number {
        font-size: 1.8rem;
    }

    .ref-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
}

/* ---- Mobile (≤576px) ---- */
@media (max-width: 575.98px) {
    .splash-logo {
        max-width: 150px;
        width: 40vw;
    }

    .hero-slide {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section-heading {
        font-size: 1.4rem;
    }

    :root {
        --section-padding: 50px 0;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 1.4rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .wms-phone-img {
        max-height: 260px;
    }

    .wms-feature-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .service-card {
        padding: 20px 16px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 20px;
    }

    .footer {
        padding: 40px 0 0;
    }

    .footer h5 {
        font-size: 0.92rem;
        margin-bottom: 14px;
    }

    .footer-desc {
        font-size: 0.82rem;
    }

    .blog-detail-content {
        padding: 16px;
        font-size: 0.9rem;
    }

    .blog-detail-meta {
        padding: 16px;
        flex-direction: column;
        gap: 10px;
    }

    .service-detail-card {
        padding: 18px;
    }
}

/* ---- Small mobile (≤420px) ---- */
@media (max-width: 420px) {
    .splash-logo {
        max-width: 130px;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.82rem;
    }

    .brand-logo {
        height: 34px;
    }

    .navbar-frog {
        padding: 10px 0;
    }

    .section-heading {
        font-size: 1.25rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}


/* WMS Hero Feature Items */
.hero-feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.hero-feature-item:hover {
    background: rgba(46, 204, 113, 0.1);
    border-color: rgba(46, 204, 113, 0.3);
    transform: translateY(-5px);
}

.hero-feature-item i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
    transition: var(--transition);
}

.hero-feature-item h5 {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
}

/* =====================================================
   PARTNERS SHOWCASE (About Page) — Light Theme
   ===================================================== */
.partners-showcase {
    position: relative;
    padding: 100px 0 110px;
    background: var(--white);
    overflow: hidden;
}

.partners-bg-decor {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.06) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    pointer-events: none;
}

.partners-bg-decor::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.04) 0%, transparent 70%);
    bottom: -250px;
    left: -150px;
    pointer-events: none;
}

/* --- Grid --- */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

/* --- Card --- */
.partner-card {
    position: relative;
    border-radius: 18px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    cursor: default;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-card:hover {
    transform: translateY(-6px);
    border-color: rgba(46, 204, 113, 0.3);
    background: var(--white);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(46, 204, 113, 0.1);
}

/* Gradient border glow */
.partner-card-glow {
    position: absolute;
    inset: -1px;
    border-radius: 18px;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--primary), rgba(52, 152, 219, 0.5), var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
    z-index: 1;
}

.partner-card:hover .partner-card-glow {
    opacity: 1;
}

/* Card inner */
.partner-card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 20px 24px;
    text-align: center;
}

/* Logo wrapper */
.partner-logo-wrap {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    padding: 14px;
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo-wrap {
    background: rgba(46, 204, 113, 0.04);
    border-color: rgba(46, 204, 113, 0.2);
    transform: scale(1.08);
}

/* Logo image */
.partner-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(60%);
    opacity: 0.7;
    transition: all 0.45s ease;
}

.partner-card:hover .partner-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Logo fallback */
.partner-logo-fallback {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(52, 152, 219, 0.06));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.partner-logo-fallback i {
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo-fallback {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.15), rgba(52, 152, 219, 0.08));
}

.partner-card:hover .partner-logo-fallback i {
    opacity: 1;
    transform: scale(1.1);
}

/* Company name */
.partner-name {
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-500);
    letter-spacing: 0.3px;
    transition: all 0.4s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.partner-card:hover .partner-name {
    color: var(--primary-dark);
}

/* Shine effect */
.partner-shine {
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(46, 204, 113, 0.06),
        transparent
    );
    pointer-events: none;
    z-index: 3;
    transition: none;
}

.partner-card:hover .partner-shine {
    animation: partnerShine 0.7s ease forwards;
}

@keyframes partnerShine {
    0%   { left: -120%; }
    100% { left: 150%; }
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .partners-showcase {
        padding: 80px 0 90px;
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .partners-showcase {
        padding: 60px 0 70px;
    }
    .partner-card-inner {
        padding: 24px 16px 20px;
    }
    .partner-logo-wrap {
        width: 72px;
        height: 72px;
        padding: 12px;
    }
}

.btn-back-services {
    border-radius: 8px;
    font-weight: 500;
    background-color: var(--white);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.btn-back-services:hover {
    background-color: var(--white) !important;
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}
