/* ========================================
   TMS Digital Solutions - Classic Business Theme
   Modern & Professional Design
   ======================================== */

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

:root {
    /* Classic Business Colors */
    --primary: #1e3a5f;
    --primary-light: #2d5a8a;
    --primary-dark: #152a45;
    --accent: #c9a227;
    --accent-light: #d4b44a;
    --secondary: #1e3a5f;

    /* Light Backgrounds */
    --bg-dark: #1e3a5f;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;

    /* Text Colors */
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;

    /* Others */
    --border: #e2e8f0;
    --white: #ffffff;
    --success: #059669;
    --info: #0284c7;

    /* Shadows */
    --shadow: 0 4px 20px rgba(30,58,95,0.08);
    --shadow-hover: 0 20px 50px rgba(30,58,95,0.12);
    --shadow-card: 0 10px 40px rgba(30,58,95,0.1);
    --transition: all 0.3s ease;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%);
    --gradient-dark: linear-gradient(135deg, #1e3a5f 0%, #152a45 100%);
    --gradient-hero: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%);
    --gradient-accent: linear-gradient(135deg, #c9a227 0%, #d4b44a 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
}

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

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Container
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    padding: 0 5%;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.lead {
    font-size: 1.15rem;
    color: var(--text-light);
}

.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-white { color: var(--white) !important; }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; letter-spacing: 1px; }

/* ========================================
   Header & Navigation - Enhanced
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    transition: var(--transition);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
}

.header.scrolled {
    box-shadow: var(--shadow-card);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    line-height: 1.2;
}

.logo-text .company-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.logo-text .tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 60%;
}

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

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a::before {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 6px;
    font-size: 0.75rem;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    padding: 0.75rem;
    border: 1px solid var(--border);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.dropdown-menu a:last-child {
    margin-bottom: 0;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.dropdown-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.dropdown-icon.blue { background: linear-gradient(135deg, #e8f4fc 0%, #dbeafe 100%); color: var(--primary); }
.dropdown-icon.green { background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%); color: var(--success); }
.dropdown-icon.cyan { background: linear-gradient(135deg, #fef3c7 0%, #fef9c3 100%); color: var(--accent); }

.dropdown-text strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.dropdown-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--bg-light);
    align-items: center;
    justify-content: center;
}

/* ========================================
   Buttons - Enhanced
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.9rem 1.85rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30,58,95,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30,58,95,0.4);
    color: var(--white);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(201,162,39,0.3);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201,162,39,0.4);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    color: var(--primary);
}

.btn-lg {
    padding: 1.1rem 2.25rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.65rem 1.35rem;
    font-size: 0.85rem;
}

/* ========================================
   Hero Slider - Full Width Container
   ======================================== */

.hero-slider {
    position: relative;
    width: 100%;
    margin-top: 73px;
    padding: 0;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

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

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4%;
    height: 100%;
}

.slide-text {
    color: var(--white);
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-badge i {
    font-size: 0.9rem;
}

.slide-text h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.slide-text h1 span {
    display: block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 50%, #c9a227 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.75rem;
    line-height: 1.7;
    max-width: 480px;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.4s ease;
    font-size: 0.9rem;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.slide-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.slide-image::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201,162,39,0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.slide-image img {
    max-width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.35);
    border: 4px solid rgba(255,255,255,0.15);
    transition: transform 0.5s ease;
}

.slide.active .slide-image img {
    animation: imageFloat 6s ease-in-out infinite;
}

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

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 2.5rem;
    right: 2.5rem;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    pointer-events: all;
}

.slider-btn:hover {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(201,162,39,0.4);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    opacity: 0;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.15);
}

.dot.active::after {
    opacity: 1;
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.5; }
}

.dot:hover {
    background: rgba(255,255,255,0.8);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255,255,255,0.2);
    z-index: 10;
    overflow: hidden;
}

.slider-progress-bar {
    height: 100%;
    background: var(--gradient-accent);
    width: 0%;
    transition: width 0.1s linear;
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
}

.slide-counter .current {
    font-size: 1.2rem;
    color: var(--accent);
}

.slide-counter .divider {
    margin: 0 0.4rem;
    opacity: 0.5;
}

/* Floating Shapes - Full Width */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border: 1px solid rgba(255,255,255,0.05);
}

.shape-1 {
    width: 250px;
    height: 250px;
    top: 5%;
    right: 5%;
    animation: floatRotate 8s ease-in-out infinite;
}

.shape-2 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    left: 3%;
    animation: floatRotate 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 120px;
    height: 120px;
    top: 50%;
    right: 15%;
    animation: floatRotate 7s ease-in-out infinite;
}

.shape-4 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation: floatRotate 9s ease-in-out infinite reverse;
    background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 70%);
}

.shape-5 {
    width: 60px;
    height: 60px;
    bottom: 25%;
    right: 25%;
    animation: floatRotate 6s ease-in-out infinite;
    background: radial-gradient(circle, rgba(201,162,39,0.15) 0%, transparent 70%);
}

@keyframes floatRotate {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(3deg); }
    50% { transform: translateY(-25px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-3deg); }
}

/* Slide Text Animations - Enhanced */
.animate-fade-up {
    opacity: 0;
    transform: translateY(50px);
}

.animate-fade-down {
    opacity: 0;
    transform: translateY(-50px);
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(-50px);
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(50px);
}

.animate-zoom-in {
    opacity: 0;
    transform: scale(0.7);
}

.animate-blur-in {
    opacity: 0;
    filter: blur(20px);
    transform: scale(1.1);
}

.slide.active .animate-fade-up {
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide.active .animate-fade-down {
    animation: slideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide.active .animate-fade-left {
    animation: slideLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide.active .animate-fade-right {
    animation: slideRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide.active .animate-zoom-in {
    animation: zoomIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide.active .animate-blur-in {
    animation: blurIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide.active .delay-1 { animation-delay: 0.15s; }
.slide.active .delay-2 { animation-delay: 0.3s; }
.slide.active .delay-3 { animation-delay: 0.45s; }
.slide.active .delay-4 { animation-delay: 0.6s; }

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
    to { opacity: 1; transform: scale(1); }
}

@keyframes blurIn {
    to { opacity: 1; filter: blur(0); transform: scale(1); }
}

/* Slide Number Indicator */
.slide-counter {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 10;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
}

.slide-counter .current {
    font-size: 1.5rem;
    color: var(--accent);
}

.slide-counter .divider {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* ========================================
   Stats Counter Section - Enhanced
   ======================================== */

.stats-section {
    background: var(--primary);
    padding: 0;
    margin-top: -1px;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1300px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.stat-box:last-child::after {
    display: none;
}

.stat-box:hover {
    background: rgba(255,255,255,0.05);
}

.stat-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(201,162,39,0.3);
}

.stat-box .stat-number {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Clients Section
   ======================================== */

.clients-section {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.clients-section .section-header {
    padding: 0 5%;
}

/* Client Logos Infinite Scroll */
.clients-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.clients-wrapper::before,
.clients-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.clients-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
}

.clients-wrapper::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--white) 100%);
}

.clients-track {
    display: flex;
    gap: 3rem;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    flex-shrink: 0;
    width: 180px;
    height: 90px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
}

.client-logo:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Testimonials */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid var(--border);
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.testimonial-content {
    padding: 2rem;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent);
    font-size: 1.25rem;
}

.testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.author-info h5 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* ========================================
   Sections - Enhanced
   ======================================== */

section {
    padding: 100px 5%;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
    position: relative;
    padding: 0 1.5rem;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--accent);
}

.section-label::before { left: 0; }
.section-label::after { right: 0; }

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
}

.bg-light {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

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

.bg-gray::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231e3a5f' fill-opacity='0.02'%3E%3Ccircle cx='1' cy='1' r='1'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.bg-primary {
    background: var(--primary);
}

.bg-dark {
    background: var(--secondary);
}

/* ========================================
   Grid System
   ======================================== */

.row {
    display: grid;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.row-2 { grid-template-columns: repeat(2, 1fr); }
.row-3 { grid-template-columns: repeat(3, 1fr); }
.row-4 { grid-template-columns: repeat(4, 1fr); }

.gap-lg { gap: 3rem; }
.gap-sm { gap: 1.5rem; }

/* ========================================
   Service Cards - Modern Design
   ======================================== */

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid transparent;
    box-shadow: var(--shadow);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 0 0 4px 4px;
    transition: width 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border);
}

.service-card:hover::before {
    width: 100px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 23px;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

.service-card:hover .service-icon::after {
    opacity: 0.2;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ========================================
   Product Cards - Enhanced
   ======================================== */

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: var(--shadow);
    border: 1px solid transparent;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-10px);
    border-color: var(--border);
}

.product-header {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.product-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.product-header.blue {
    background: linear-gradient(135deg, #e8f4fc 0%, #dbeafe 100%);
}
.product-header.green {
    background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
}
.product-header.cyan {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9c3 100%);
}

.product-logo {
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.product-logo.blue { color: var(--primary); }
.product-logo.green { color: var(--success); }
.product-logo.cyan { color: var(--accent); }

.product-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.product-body {
    padding: 2rem;
}

.product-body p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.product-features {
    list-style: none;
    margin-bottom: 0;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.product-features li i {
    color: var(--success);
    margin-top: 4px;
    font-size: 0.85rem;
}

.product-footer {
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.product-link {
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.product-link:hover {
    background: var(--primary);
    color: var(--white);
    gap: 14px;
}

/* ========================================
   Feature Cards
   ======================================== */

.feature-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid transparent;
}

.feature-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-card);
    transform: translateX(5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ========================================
   Module Card
   ======================================== */

.module-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 1.75rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.module-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateX(5px);
    border-left-color: var(--accent);
}

.module-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.module-card h4 i {
    color: var(--primary);
    font-size: 1.1rem;
}

.module-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ========================================
   About Section - Enhanced
   ======================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--accent);
    border-radius: 16px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
}

.about-badge {
    position: absolute;
    bottom: -25px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.75rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-hover);
    border: 4px solid var(--white);
}

.about-badge .number {
    font-size: 2.75rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    color: var(--accent-light);
}

.about-badge span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-list-item i {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 1rem;
}

.about-list-item h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.about-list-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ========================================
   CTA Section - Enhanced
   ======================================== */

.cta {
    background: var(--gradient-primary);
    padding: 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
}

.cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ========================================
   Contact Section
   ======================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-info > p {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-card);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-item h5 {
    font-size: 1rem;
    margin-bottom: 0.15rem;
    color: var(--text-dark);
}

.contact-item span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    font-family: inherit;
    border: 2px solid var(--border);
    border-radius: 10px;
    background: var(--bg-light);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(30,58,95,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

/* ========================================
   Footer - Enhanced
   ======================================== */

.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 80px 5% 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand .logo-text .company-name {
    color: var(--white);
    font-size: 1.5rem;
}

.footer-brand .logo-text .tagline {
    color: rgba(255,255,255,0.6);
}

.footer-logo {
    height: 55px;
    width: auto;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin: 1rem 0 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   Page Hero (Inner Pages)
   ======================================== */

.page-hero {
    padding: 160px 5% 80px;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    font-size: 2.75rem;
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.page-hero.product {
    padding: 160px 5% 100px;
    text-align: left;
}

.page-hero .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

/* ========================================
   Original Hero (kept for other pages)
   ======================================== */

.hero {
    padding: 160px 5% 100px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 50%, var(--bg-gray) 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.hero-content {
    max-width: 550px;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ========================================
   Cards
   ======================================== */

.card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.85rem; }

    .section-title { font-size: 2rem; }
    .hero h1 { font-size: 2.5rem; }
    .slide-text h1 { font-size: 2.75rem; }

    .row-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }

    .about-grid { gap: 3rem; }

    /* Clients Section 1024px */
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Clients Section 768px */
    .clients-section {
        padding: 60px 0;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        padding: 0 5%;
    }

    .client-logo {
        width: 150px;
        height: 75px;
    }

    .clients-wrapper::before,
    .clients-wrapper::after {
        width: 80px;
    }
    .header::after {
        height: 2px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-card);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.5rem;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .nav-menu > li > a::after {
        display: none;
    }

    .nav-menu a {
        padding: 0.85rem 1rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0.5rem;
        background: var(--bg-light);
        margin-top: 0.5rem;
        border-radius: 10px;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Hero Slider Responsive */
    .hero-slider {
        margin-top: 65px;
    }

    .slider-container {
        height: 550px;
    }

    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 5%;
    }

    .slide-text h1 {
        font-size: 2rem;
    }

    .slide-text p {
        font-size: 0.95rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .slide-buttons {
        justify-content: center;
    }

    .slide-image {
        display: none;
    }

    .slider-controls {
        left: 1rem;
        right: 1rem;
    }

    .slider-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .slider-dots {
        bottom: 1.25rem;
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .slide-counter {
        bottom: 1.25rem;
        right: 1.25rem;
        font-size: 0.85rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box {
        padding: 2rem 1.5rem;
    }

    .stat-box::after {
        display: none;
    }

    .stat-box .stat-number {
        font-size: 2rem;
    }

    .floating-shapes {
        display: none;
    }

    .hero-inner,
    .about-grid,
    .contact-grid,
    .page-hero .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image::before {
        display: none;
    }

    .hero { padding: 140px 5% 80px; }
    .page-hero { padding: 140px 5% 60px; }
    section { padding: 70px 5%; }

    .hero-image { order: -1; }

    .row-2,
    .row-3,
    .row-4 {
        grid-template-columns: 1fr;
    }

    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .about-list { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }

    .about-badge {
        position: static;
        margin-top: 1.5rem;
        display: inline-block;
    }

    .section-label::before,
    .section-label::after {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    .hero h1 { font-size: 1.85rem; }
    .section-title { font-size: 1.65rem; }

    .btn { padding: 0.8rem 1.5rem; font-size: 0.9rem; }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number { font-size: 2rem; }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-box {
        padding: 1.5rem;
    }

    /* Slider 480px */
    .slider-container {
        height: 500px;
    }

    .slide-text h1 {
        font-size: 1.65rem;
    }

    .slide-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }

    .slide-text p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .slide-buttons .btn,
    .slide-buttons .btn-outline-white {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .slide-counter {
        display: none;
    }
}

/* ========================================
   Animations
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
