/*
 * Hidromak Pompa - Main Stylesheet
 * Modern Industrial Design
 */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #0a3d62;
    --primary-light: #1e5f8a;
    --primary-dark: #062742;
    --secondary: #00b894;
    --secondary-light: #00d9a5;
    --accent: #f39c12;
    --accent-light: #f5ab35;
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #adb5bd;
    --white: #ffffff;
    --danger: #e74c3c;
    --success: #27ae60;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);

    --transition: all 0.3s ease;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

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

ul, ol {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

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

.btn-outline-dark {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* ===== TOP BAR (Mobitek Style) ===== */
.top-bar {
    background: linear-gradient(135deg, #00b894, #00a383);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 500;
}

.top-bar-item i {
    color: var(--white);
    font-size: 14px;
}

.top-bar-item a {
    color: var(--white);
}

.top-bar-item a:hover {
    color: rgba(255,255,255,0.8);
}

.top-bar-item .label {
    color: rgba(255,255,255,0.9);
    margin-right: 5px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-cta {
    background: var(--white);
    color: #00b894;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-bar-cta:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    font-size: 14px;
}

.top-bar-social a:hover {
    background: var(--white);
    color: #00b894;
    transform: translateY(-2px);
}

.top-bar-search {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.top-bar-search:hover {
    background: var(--white);
    color: #00b894;
}

/* ===== HEADER (Premium Corporate Style) ===== */
.header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0099cc 0%, #00b894 50%, #0099cc 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header.scrolled::after {
    opacity: 1;
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e3a5f;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 50px;
    background: linear-gradient(135deg, #f0fdf9 0%, #ecfeff 100%);
    border: 1px solid rgba(0, 184, 148, 0.15);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-phone i {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00b894 0%, #0099cc 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
}

.header-phone:hover {
    background: linear-gradient(135deg, #00b894 0%, #0099cc 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.35);
}

.header-phone:hover i {
    background: #fff;
    color: #00b894;
}

.btn-quote {
    background: linear-gradient(135deg, #00b894 0%, #009d80 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 184, 148, 0.4);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-quote:hover::before {
    left: 100%;
}

.btn-quote:hover {
    background: linear-gradient(135deg, #009d80 0%, #008b72 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 184, 148, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 12px;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo:hover .logo-image {
    filter: brightness(1.05);
}

/* Logo Text (Fallback) */
.logo-text {
    font-size: 32px;
    font-weight: 800;
    color: #0099cc;
    letter-spacing: -1px;
    line-height: 1;
}

.logo-text .logo-m {
    color: #0099cc;
    font-size: 42px;
    font-weight: 900;
}

.logo-text .logo-highlight {
    color: #00b894;
}

.logo-text .logo-k {
    color: #0099cc;
    position: relative;
}

.logo-text .logo-k::after {
    content: ')';
    color: #00b894;
    font-weight: 300;
}

.logo-subtext {
    display: block;
    font-size: 11px;
    color: #00b894;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 2px;
    text-transform: lowercase;
}

/* Alternative: Image Logo - Size controlled by admin settings */
.logo-image {
    /* max-height controlled by inline style from admin */
    object-fit: contain;
}

/* Beta Badge */
.beta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 8px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(238, 90, 90, 0.4);
    animation: betaPulse 2s ease-in-out infinite;
}

@keyframes betaPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

/* Icon style logo (fallback) */
.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a365d, #00b894);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.logo-icon i {
    font-size: 24px;
    color: var(--white);
}

.logo-text span {
    color: var(--secondary);
}

/* Navigation (Premium Corporate Style) */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Hide mobile-only elements on desktop */
.mobile-menu-close,
.mobile-menu-header,
.mobile-contact-info,
.mobile-cta-btn,
.mobile-lang-switcher,
.mobile-menu-overlay {
    display: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    font-weight: 600;
    font-size: 13px;
    color: #1e3a5f;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 6px;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0099cc, #00b894);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 40px);
}

.nav-link:hover,
.nav-link.active {
    color: #0099cc;
}

.nav-link i.fa-chevron-down {
    font-size: 9px;
    transition: transform 0.3s ease;
    margin-left: 2px;
    opacity: 0.7;
}

.nav-item:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
    opacity: 1;
}

/* Dropdown - Premium Style */
.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 280px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.03);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 8px solid #fff;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #1e3a5f;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
    border-radius: 10px;
    margin-bottom: 4px;
}

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

.dropdown-item::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #0099cc, #00b894);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.25s ease;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #f0fdf9 0%, #ecfeff 100%);
    color: #0099cc;
    padding-left: 22px;
}

.dropdown-item:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Language Switcher - Premium Style */
.lang-switcher {
    display: flex !important;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    padding: 3px;
    background: #f1f5f9;
    border-radius: 8px;
}

.header-right .lang-switcher {
    display: flex !important;
}

.lang-switcher a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 32px;
    padding: 0 10px;
    border-radius: 6px;
    background: transparent !important;
    color: #64748b !important;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.5px;
}

.lang-switcher a:hover {
    background: #e2e8f0 !important;
    color: #1e3a5f !important;
}

.lang-switcher a.active {
    background: linear-gradient(135deg, #00b894 0%, #0099cc 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.4);
}

/* Mobile Toggle - Premium Style */
.mobile-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1e3a5f;
    background: linear-gradient(135deg, #f0fdf9 0%, #ecfeff 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 184, 148, 0.2);
    cursor: pointer;
    z-index: 100;
    position: relative;
}

.mobile-toggle:hover {
    background: linear-gradient(135deg, #00b894 0%, #0099cc 100%);
    color: #fff;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 60px;
}

.slide-text {
    max-width: 800px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: rgba(0, 168, 232, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.slide-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.slide-buttons .btn {
    padding: 16px 35px;
    font-size: 15px;
    font-weight: 600;
}

.slide-buttons .btn-primary {
    background: #00c853;
    border-color: #00c853;
}

.slide-buttons .btn-primary:hover {
    background: #00a843;
    border-color: #00a843;
}

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

.slide-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 50px;
    height: 4px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--white);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.slider-arrow {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    border: 2px solid rgba(255,255,255,0.3);
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.25);
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

/* ===== PRODUCT SHOWCASE (Standart Pompa Style) ===== */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.showcase-left {
    background: #f5f5f5;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.showcase-images img {
    max-height: 200px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.showcase-text {
    text-align: left;
}

.showcase-text p {
    font-size: 20px;
    color: #333;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.4;
}

.showcase-text h2 {
    font-size: 48px;
    font-weight: 800;
    color: #1a365d;
    line-height: 1.1;
    margin-bottom: 30px;
}

.showcase-text h2 span {
    color: #00b894;
}

.showcase-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #00b894;
    color: white;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 0;
    min-width: 350px;
    transition: var(--transition);
}

.showcase-btn span {
    font-weight: 800;
}

.showcase-btn i {
    font-size: 18px;
}

.showcase-btn:hover {
    background: #00a383;
    color: white;
    transform: translateX(5px);
}

.showcase-right {
    background: #4a5568;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-header {
    margin-bottom: 30px;
}

.showcase-header p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.showcase-header h3 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.showcase-categories {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.showcase-category {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 20px;
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: white;
    transition: var(--transition);
    cursor: pointer;
}

.showcase-category:first-child {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.showcase-category:hover {
    background: rgba(255,255,255,0.15);
    padding-left: 30px;
}

.showcase-category-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.showcase-category-icon i {
    font-size: 28px;
}

.showcase-category span {
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .product-showcase {
        grid-template-columns: 1fr;
    }

    .showcase-left,
    .showcase-right {
        padding: 40px 30px;
    }

    .showcase-text h2 {
        font-size: 36px;
    }

    .showcase-btn {
        min-width: 100%;
    }

    .showcase-header h3 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .showcase-images {
        flex-direction: column;
        align-items: center;
    }

    .showcase-images img {
        max-height: 150px;
    }

    .showcase-text h2 {
        font-size: 28px;
    }
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--white);
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.stat-item {
    padding: 35px 30px;
    text-align: center;
    border-right: 1px solid var(--light);
    transition: var(--transition);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: var(--primary);
}

.stat-item:hover .stat-number,
.stat-item:hover .stat-label {
    color: var(--white);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
    transition: var(--transition);
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
    transition: var(--transition);
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--light);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 184, 148, 0.1);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-dark .section-badge {
    background: rgba(255,255,255,0.1);
    color: var(--secondary-light);
}

.section-title {
    margin-bottom: 15px;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.7);
}

/* ===== SERVICES (Modern) ===== */
.services-section-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.services-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(0,102,255,0.03)" stroke-width="0.5"/></svg>') repeat;
    opacity: 0.5;
}

.services-header-modern {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(0,102,255,0.1) 0%, rgba(0,212,170,0.1) 100%);
    border-radius: 50px;
    color: #0066ff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.services-badge i {
    font-size: 16px;
}

.services-title-modern {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-subtitle-modern {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066ff, #00d4aa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(0,102,255,0.03) 0%, transparent 70%);
    transition: all 0.6s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,102,255,0.15);
    border-color: rgba(0,102,255,0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    bottom: -50%;
    left: -50%;
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #0066ff;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #0066ff, #00d4aa);
    border-radius: 22px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0,102,255,0.3);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #0066ff;
}

.service-card p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0066ff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(0,102,255,0.08) 0%, rgba(0,212,170,0.08) 100%);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: #fff;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,102,255,0.3);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Service card number indicator */
.service-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(0,102,255,0.05);
    line-height: 1;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-number {
    color: rgba(0,102,255,0.1);
}

/* ===== PRODUCTS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

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

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

.product-image {
    height: 200px;
    background: linear-gradient(135deg, var(--light), #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image i {
    font-size: 60px;
    color: var(--gray-light);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.9), rgba(0, 184, 148, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay .btn {
    transform: translateY(0);
    opacity: 1;
}

.product-content {
    padding: 25px;
}

.product-category {
    font-size: 12px;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-content p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--white);
}

.about-image-secondary img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--secondary);
    color: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.about-badge-text {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.about-text .section-badge {
    margin-bottom: 20px;
}

.about-text h2 {
    margin-bottom: 25px;
}

.about-text > p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.about-feature p {
    font-size: 14px;
    color: var(--gray);
}

/* ===== REFERENCES ===== */
.references-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.reference-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.reference-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.reference-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}

.reference-card h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 8px;
}

.reference-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.cta-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: 5%;
    animation: ctaFloat 8s ease-in-out infinite;
}

.cta-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 20%;
    animation: ctaFloat 6s ease-in-out infinite reverse;
}

.cta-circle-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 35%;
    animation: ctaFloat 10s ease-in-out infinite 1s;
}

.cta-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 C300,100 600,20 900,60 C1200,100 1200,60 1200,60 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.03)"/></svg>') repeat-x;
    background-size: 600px 100%;
    animation: ctaWave 15s linear infinite;
}

@keyframes ctaFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-20px, -15px) scale(1.05);
    }
    50% {
        transform: translate(10px, -25px) scale(1);
    }
    75% {
        transform: translate(-15px, 10px) scale(0.95);
    }
}

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

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-text p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

/* Animated Phone Button */
.btn-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00b894 0%, #00a383 100%);
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 184, 148, 0.4);
    animation: phonePulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.btn-cta-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: phoneShine 3s ease-in-out infinite;
}

.btn-cta-phone:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(0, 184, 148, 0.5);
    animation: none;
}

.btn-cta-phone .phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: phoneRing 1.5s ease-in-out infinite;
}

.btn-cta-phone .phone-icon i {
    font-size: 20px;
}

.btn-cta-phone .phone-text {
    letter-spacing: 1px;
}

@keyframes phonePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(0, 184, 148, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 12px 40px rgba(0, 184, 148, 0.5);
    }
}

@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(-15deg);
    }
    20% {
        transform: rotate(15deg);
    }
    30% {
        transform: rotate(-10deg);
    }
    40% {
        transform: rotate(10deg);
    }
    50%, 100% {
        transform: rotate(0deg);
    }
}

@keyframes phoneShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.contact-card-icon.whatsapp {
    background: #25d366;
}

.contact-card-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-card-content p {
    color: var(--gray);
    line-height: 1.6;
}

.contact-card-content a {
    color: var(--primary);
}

.contact-card-content a:hover {
    color: var(--secondary);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand .logo-image {
    max-width: 180px;
    height: auto;
    display: block;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
}

.footer-contact li i {
    color: var(--secondary);
    width: 20px;
    margin-top: 3px;
}

.footer-bottom {
    padding: 25px 0;
    padding-bottom: 100px; /* Space for support button */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.developer-credit a {
    color: var(--secondary);
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    font-weight: 600;
}

/* ===== SUPPORT FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    padding: 14px 24px 14px 18px;
    border-radius: 50px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.whatsapp-float .support-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.whatsapp-float .support-label {
    font-size: 11px;
    opacity: 0.9;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.whatsapp-float .support-title {
    font-size: 15px;
    font-weight: 600;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.5);
    background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
}

.whatsapp-float:hover i {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

/* Pulse animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    z-index: -1;
    animation: pulse-support 2s infinite;
}

@keyframes pulse-support {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    /* Header adjustments for medium screens */
    .nav-link {
        padding: 10px 12px;
        font-size: 12px;
    }

    .header-phone {
        padding: 6px 12px;
        font-size: 13px;
        gap: 8px;
    }

    .header-phone i {
        width: 26px;
        height: 26px;
        min-width: 26px;
        font-size: 11px;
    }

    .btn-quote {
        padding: 10px 18px;
        font-size: 11px;
    }

    .lang-switcher a {
        min-width: 32px;
        height: 28px;
        font-size: 10px;
    }
}

@media (max-width: 1100px) {
    /* Hide phone on smaller screens, keep only quote button */
    .header-phone {
        display: none;
    }
}

@media (max-width: 992px) {
    /* Top Bar Responsive */
    .top-bar-inner {
        flex-wrap: wrap;
        gap: 10px;
    }

    .top-bar-left {
        flex: 1;
    }

    .top-bar-cta {
        padding: 8px 18px;
        font-size: 12px;
    }

    .top-bar-social {
        gap: 6px;
    }

    .top-bar-social a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    /* Header Right - Hide phone and quote button on tablet */
    .header-right {
        display: none;
    }

    /* Header Responsive */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        transition: right 0.5s ease-out;
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Mobile Menu Close Button */
    .mobile-menu-close {
        display: flex !important;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f0fdf9 0%, #ecfeff 100%);
        border: 1px solid rgba(0, 184, 148, 0.2);
        border-radius: 12px;
        font-size: 18px;
        color: #1e3a5f;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .mobile-menu-close:hover {
        background: linear-gradient(135deg, #00b894 0%, #0099cc 100%);
        color: #fff;
        border-color: transparent;
    }

    /* Mobile Menu Header */
    .mobile-menu-header {
        display: block !important;
        padding: 50px 0 30px;
        border-bottom: 2px solid #f0fdf9;
        margin-bottom: 20px;
        text-align: center;
    }

    .mobile-menu-header .mobile-logo {
        font-size: 26px;
        font-weight: 800;
        color: #0099cc;
    }

    .mobile-menu-header .mobile-logo span {
        color: #00b894;
    }

    /* Mobile Contact Info */
    .mobile-contact-info {
        display: block !important;
        padding: 20px 0;
        border-top: 2px solid #f0fdf9;
        margin-top: 20px;
    }

    .mobile-contact-item {
        display: flex !important;
        align-items: center;
        gap: 14px;
        padding: 14px 0;
        color: #1e3a5f;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .mobile-contact-item:hover {
        color: #00b894;
    }

    .mobile-contact-item i {
        width: 42px;
        height: 42px;
        background: linear-gradient(135deg, #f0fdf9 0%, #ecfeff 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #00b894;
        font-size: 16px;
        transition: all 0.3s ease;
    }

    .mobile-contact-item:hover i {
        background: linear-gradient(135deg, #00b894 0%, #0099cc 100%);
        color: #fff;
    }

    /* Mobile CTA Button */
    .mobile-cta-btn {
        display: block !important;
        width: 100%;
        padding: 18px;
        background: linear-gradient(135deg, #00b894 0%, #0099cc 100%);
        color: #fff;
        text-align: center;
        font-weight: 700;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 12px;
        text-decoration: none;
        margin-top: 20px;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(0, 184, 148, 0.35);
    }

    .mobile-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(0, 184, 148, 0.45);
    }

    /* Mobile Language Switcher */
    .mobile-lang-switcher {
        display: flex !important;
        justify-content: center;
        gap: 12px;
        margin-top: 25px;
        padding-top: 25px;
        border-top: 2px solid #f0fdf9;
    }

    .mobile-lang-switcher a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 14px;
        background: #f1f5f9;
        color: #64748b;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .mobile-lang-switcher a:hover {
        background: #e2e8f0;
        color: #1e3a5f;
    }

    .mobile-lang-switcher a.active {
        background: linear-gradient(135deg, #00b894 0%, #0099cc 100%);
        color: #fff;
        box-shadow: 0 6px 20px rgba(0, 184, 148, 0.4);
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }

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

    .nav-item {
        width: 100%;
    }

    .nav-item + .nav-item .nav-link::before {
        display: none;
    }

    .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid #f0fdf9;
        width: 100%;
        font-size: 15px;
        color: #1e3a5f;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #00b894;
    }

    .dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        left: 0 !important;
        box-shadow: none;
        background: linear-gradient(135deg, #f0fdf9 0%, #ecfeff 100%);
        padding: 0 12px;
        max-height: 0;
        overflow: hidden;
        border-top: none;
        border-radius: 12px;
        margin-top: 0;
        margin-bottom: 0;
        transition: max-height 0.4s ease, margin 0.4s ease, padding 0.4s ease;
    }

    .dropdown::before {
        display: none !important;
    }

    /* Override desktop hover - only JS click works on mobile */
    .nav-item:hover .dropdown {
        max-height: 0;
        padding: 0 12px;
        margin: 0;
    }

    .nav-item.dropdown-open .dropdown,
    .nav-item.dropdown-open:hover .dropdown {
        max-height: 500px !important;
        margin-top: 8px !important;
        margin-bottom: 8px !important;
        padding: 12px !important;
    }

    .dropdown-item {
        padding: 12px 16px;
        padding-left: 16px !important;
        border-radius: 8px;
        font-size: 14px;
    }

    .dropdown-item::before {
        display: none !important;
    }

    .dropdown-item:hover {
        background: #fff;
        padding-left: 16px !important;
    }

    /* Chevron rotation on dropdown open */
    .nav-item.dropdown-open .nav-link i.fa-chevron-down {
        transform: rotate(180deg);
    }

    .mobile-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }

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

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

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images {
        order: -1;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    /* Top Bar Mobile */
    .top-bar {
        padding: 10px 0;
    }

    .top-bar-inner {
        justify-content: center;
    }

    .top-bar-left {
        display: none;
    }

    .top-bar-right {
        width: 100%;
        justify-content: center;
    }

    .top-bar-search {
        display: none;
    }

    /* Header Mobile */
    .header {
        padding: 12px 0;
    }

    .header-inner {
        padding: 10px 0;
    }

    .logo-text {
        font-size: 24px;
    }

    .logo-text .logo-m {
        font-size: 32px;
    }

    .logo-subtext {
        font-size: 10px;
    }

    /* logo-image size controlled by admin inline style */

    /* Mobile Menu Width */
    .nav-menu {
        width: 280px;
        right: -280px;
    }

    /* Header Inner - More space for logo and menu button */
    .header-inner {
        padding: 8px 0;
        min-height: 70px;
    }

    /* Logo smaller on mobile */
    .logo {
        padding: 4px;
        flex-shrink: 0;
        max-width: calc(100% - 70px);
    }

    .logo-image {
        max-width: 100%;
        height: auto;
    }

    /* Mobile toggle - ensure it's not overlapping with logo */
    .mobile-toggle {
        margin-left: auto;
        flex-shrink: 0;
    }

    /* Header inner flex for logo and menu spacing */
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

    .hero-slider {
        height: 500px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .stats-inner {
        grid-template-columns: 1fr;
        margin-top: -40px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--light);
    }

    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .about-badge {
        left: 20px;
        top: 20px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .btn-cta-phone {
        padding: 15px 30px;
        font-size: 18px;
    }

    .btn-cta-phone .phone-icon {
        width: 40px;
        height: 40px;
    }

    .btn-cta-phone .phone-icon i {
        font-size: 18px;
    }

    .cta-circle-1 {
        width: 200px;
        height: 200px;
    }

    .cta-circle-2 {
        width: 150px;
        height: 150px;
    }

    .cta-circle-3 {
        width: 100px;
        height: 100px;
    }

    .slider-arrows {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-slider {
        height: 450px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px 12px 14px;
    }

    .whatsapp-float i {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .whatsapp-float .support-title {
        font-size: 14px;
    }

    .whatsapp-float .support-label {
        font-size: 10px;
    }
}

/* ===== NEW CONTACT SECTION ===== */
.contact-section-new {
    padding: 80px 0 !important;
    background: #f0f7ff !important;
}

.contact-section-new .contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex !important;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-section-new .contact-form-side {
    flex: 1.2;
    padding: 60px;
    background: #fff;
}

.contact-section-new .contact-form-inner {
    max-width: 500px;
}

.contact-section-new .contact-label {
    color: #0066ff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.contact-section-new .contact-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 40px;
}

.contact-section-new .contact-form .form-row-new {
    display: flex !important;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-section-new .contact-form .form-row-new input {
    flex: 1;
}

.contact-section-new .contact-form input,
.contact-section-new .contact-form textarea {
    width: 100% !important;
    padding: 16px 20px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8fafc !important;
}

.contact-section-new .contact-form input:focus,
.contact-section-new .contact-form textarea:focus {
    outline: none;
    border-color: #0066ff !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(0,102,255,0.1) !important;
}

.contact-section-new .contact-form input::placeholder,
.contact-section-new .contact-form textarea::placeholder {
    color: #9ca3af;
}

.contact-section-new .contact-form textarea {
    margin-bottom: 25px;
    resize: vertical;
    min-height: 140px;
}

.contact-section-new .btn-submit {
    background: #0066ff !important;
    color: #fff !important;
    border: none !important;
    padding: 16px 40px !important;
    font-size: 15px !important;
    font-weight: 600;
    border-radius: 8px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.contact-section-new .btn-submit:hover {
    background: #0052cc !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,102,255,0.3);
}

/* Contact Info Side */
.contact-section-new .contact-info-side {
    flex: 0.8;
    background: #0066ff;
    padding: 60px 50px;
    color: #fff;
    border-radius: 16px;
    margin: 20px;
}

.contact-section-new .info-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
}

.contact-section-new .info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-section-new .info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-section-new .info-icon i {
    font-size: 20px;
    color: #fff;
}

.contact-section-new .info-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.contact-section-new .info-content p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
    color: #fff;
}

.contact-section-new .info-content a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-section-new .info-content a:hover {
    opacity: 0.8;
}

/* Responsive for new contact */
@media (max-width: 992px) {
    .contact-section-new .contact-wrapper {
        flex-direction: column;
        margin: 0 20px;
    }

    .contact-section-new .contact-form-side {
        padding: 40px 30px;
    }

    .contact-section-new .contact-info-side {
        margin: 0;
        border-radius: 0 0 16px 16px;
        padding: 40px 30px;
    }

    .contact-section-new .contact-form .form-row-new {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .contact-section-new {
        padding: 40px 0 !important;
    }

    .contact-section-new .contact-title {
        font-size: 28px;
    }

    .info-title {
        font-size: 24px;
    }
}
