/* Frontend CSS - Kurumsal Tasarım */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    --primary-color: #00173a;
    --primary-light: #002d5c;
    --secondary-color: #0066cc;
    --accent-color: #00a8ff;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --text-color: #374151;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 23, 58, 0.2);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 23, 58, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Top Header Bar */
.header-top {
    background: var(--primary-color);
    color: white;
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-top-left,
.header-top-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.header-top-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
}

.header-top-item i {
    font-size: 14px;
    color: var(--accent-color);
    width: 16px;
    text-align: center;
}

.header-top-item a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color 0.3s;
}

.header-top-item a:hover {
    color: var(--accent-color);
}

.header-top-item span {
    color: rgba(255, 255, 255, 0.95);
}

/* Logo Section */
.header-logo-section {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.9;
}

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text h1 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-text p {
    color: var(--text-light);
    font-size: 14px;
    margin: 5px 0 0 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Navigation Section */
.header-nav-section {
    background: var(--primary-color);
    padding: 0;
}

.header-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Navigation */
.main-nav {
    flex: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    padding: 18px 22px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-menu > li > a i {
    font-size: 11px;
    margin-left: 6px;
    transition: transform 0.3s;
}

.nav-menu > li:hover > a i {
    transform: rotate(180deg);
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.nav-menu > li > a.active::after,
.nav-menu > li:hover > a::after {
    transform: scaleX(1);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 8px 30px rgba(0, 23, 58, 0.15);
    border-radius: 0 0 12px 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 8px 0;
    margin-top: 0;
    border-top: 3px solid var(--accent-color);
    z-index: 1000;
    overflow: hidden;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 14px 24px;
    display: block;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: linear-gradient(90deg, rgba(0, 168, 255, 0.1) 0%, rgba(0, 168, 255, 0.05) 100%);
    color: var(--primary-color);
    border-left-color: var(--accent-color);
    padding-left: 28px;
    font-weight: 600;
    transform: translateX(3px);
}

/* Submenu */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: white;
    min-width: 260px;
    max-width: 300px;
    box-shadow: 0 8px 30px rgba(0, 23, 58, 0.15);
    border-radius: 0 8px 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    padding: 8px 0;
    margin-left: 0;
    border-left: 3px solid var(--accent-color);
    z-index: 1001;
    overflow: hidden;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu a {
    padding: 12px 24px;
    display: block;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.submenu a:hover,
.submenu a.active {
    background: linear-gradient(90deg, rgba(0, 168, 255, 0.1) 0%, rgba(0, 168, 255, 0.05) 100%);
    color: var(--primary-color);
    border-left-color: var(--accent-color);
    padding-left: 28px;
    font-weight: 600;
    transform: translateX(3px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover span {
    background: var(--accent-color);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Slider Section */
.slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
}

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

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.slider-slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.slider-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 23, 58, 0.3) 0%, rgba(0, 23, 58, 0.6) 100%);
    z-index: 1;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    padding: 40px 0;
    color: white;
    text-align: center;
}

.slider-content-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.slider-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.slider-subtitle {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.slider-description {
    font-size: 20px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.slider-buttons {
    margin-top: 30px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-slider {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.4);
    text-shadow: none;
}

.btn-slider:hover {
    background: #0099e6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 255, 0.6);
}

.btn-slider i {
    transition: transform 0.3s;
}

.btn-slider:hover i {
    transform: translateX(5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-nav i {
    font-size: 20px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.slider-indicator.active,
.slider-indicator:hover {
    background: white;
    transform: scale(1.2);
}

/* Hero Section (Fallback) */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {

    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: transparent;
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

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

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

/* Container */
.container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-title p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
    font-weight: 400;
}

/* Services Section */
.services-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(0, 23, 58, 0.02) 0%, transparent 50%),
        linear-gradient(225deg, rgba(0, 168, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.service-card {
    background: #ffffff;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 23, 58, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 23, 58, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 23, 58, 0.12);
    border-color: rgba(0, 23, 58, 0.15);
}

.service-card-inner {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.service-icon-wrapper {
    position: relative;
    display: flex;
    flex-shrink: 0;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff !important;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 23, 58, 0.2);
    z-index: 2;
    flex-shrink: 0;
    min-width: 56px;
    min-height: 56px;
}

.service-icon *,
.service-icon i,
.service-icon::before {
    color: #ffffff !important;
    display: block !important;
}

.service-icon i {
    display: block;
    line-height: 1;
    font-style: normal;
    font-weight: 900;
    color: #ffffff !important;
    font-size: 24px;
}

.service-card:hover .service-icon {
    background: var(--accent-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 168, 255, 0.3);
}

.service-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s;
    text-align: left;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 13px;
    margin: 0;
    flex: 1;
    text-align: left;
}

.service-card-footer {
    display: none;
}

.service-card .btn {
    margin: 0;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
}

.service-card .btn::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;
}

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

.service-card .btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(0, 168, 255, 0.35);
}

.service-card .btn i {
    font-size: 12px;
    transition: transform 0.3s;
}

.service-card .btn:hover i {
    transform: translateX(3px);
}

/* Sectors Section */
.sectors-section {
    background: #ffffff;
    padding: 80px 0;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.sector-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 23, 58, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 23, 58, 0.08);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 23, 58, 0.1);
    border-color: var(--primary-color);
}

.sector-icon-wrapper {
    flex-shrink: 0;
}

.sector-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
    box-shadow: none;
}

.sector-icon * {
    color: inherit !important;
}

.sector-icon i {
    display: block;
    line-height: 1;
    font-style: normal;
    font-weight: 900;
}

.sector-card:hover .sector-icon {
    transform: scale(1.1);
    color: var(--accent-color) !important;
}

.sector-card:hover .sector-icon * {
    color: var(--accent-color) !important;
}

.sector-card-content {
    flex: 1;
}

.sector-card h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: color 0.3s;
    line-height: 1.4;
    text-align: left;
}

.sector-card:hover h3 {
    color: var(--accent-color);
}

.sector-card p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Statistics Section */
.statistics-section {
    background: linear-gradient(135deg, #00173a 0%, #002855 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 168, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 168, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.statistics-section .container {
    position: relative;
    z-index: 1;
}

.statistics-section .section-title h2 {
    color: #ffffff;
}

.statistics-section .section-title p {
    color: rgba(255, 255, 255, 0.9);
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.statistic-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.statistic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.statistic-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 168, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.2);
}

.statistic-card:hover::before {
    opacity: 1;
}

.statistic-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.statistic-label {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

/* Features Section */
.features-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(0, 23, 58, 0.02) 0%, transparent 50%),
        linear-gradient(225deg, rgba(0, 168, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

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

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 23, 58, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 23, 58, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 23, 58, 0.1);
    border-color: var(--primary-color);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff !important;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 23, 58, 0.1);
}

.feature-icon i {
    display: block;
    line-height: 1;
    font-style: normal;
    font-weight: 900;
    color: #ffffff !important;
}

.feature-item:hover .feature-icon {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 23, 58, 0.15);
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    transition: color 0.3s;
}

.feature-item:hover h3 {
    color: var(--accent-color);
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Map Section */
.map-section {
    width: 100%;
    background: var(--light-color);
    border-top: 1px solid var(--border-color);
}

#map {
    width: 100%;
    height: 450px;
    border: none;
    z-index: 1;
}

/* Leaflet Map Customization */
.leaflet-container {
    font-family: var(--font-family);
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.leaflet-popup-content {
    margin: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.leaflet-popup-content strong {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: white;
    font-size: 20px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 2;
    display: block;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Contact Form */
.contact-section {
    background: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-info-item {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Slider Responsive */
@media (max-width: 992px) {
    .slider-container {
        height: 60vh;
        min-height: 400px;
    }
    
    .slider-title {
        font-size: 42px;
    }
    
    .slider-subtitle {
        font-size: 26px;
    }
    
    .slider-description {
        font-size: 18px;
    }
    
    .btn-slider {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 50vh;
        min-height: 350px;
    }
    
    .slider-content {
        padding: 30px 0;
    }
    
    .slider-content-inner {
        padding: 0 15px;
    }
    
    .slider-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .slider-subtitle {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .slider-description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .slider-buttons {
        margin-top: 20px;
    }
    
    .btn-slider {
        padding: 12px 25px;
        font-size: 15px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
    }
    
    .slider-nav i {
        font-size: 16px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-indicators {
        bottom: 20px;
    }
    
    .slider-indicator {
        width: 10px;
        height: 10px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .header-top-left,
    .header-top-right {
        gap: 15px;
    }
    
    .header-top-item {
        font-size: 12px;
    }
    
    .logo-text h1 {
        font-size: 24px;
    }
    
    .logo-text p {
        font-size: 13px;
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .statistics-section {
        padding: 70px 0;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .statistic-number {
        font-size: 44px;
    }
    
    .service-card-inner {
        padding: 30px 25px;
        gap: 18px;
    }
    
    .service-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
    
    .service-icon i {
        font-size: 22px;
    }
    
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .sector-card {
        padding: 30px 25px;
        flex-direction: row;
        gap: 18px;
    }
    
    .sector-icon {
        width: 55px;
        height: 55px;
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-item {
        padding: 35px 25px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
}

/* Mobile First - Extra Small Devices (320px and up) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .section-title p {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .header-top {
        padding: 8px 0;
        font-size: 11px;
    }
    
    .header-top-item {
        font-size: 11px;
        gap: 5px;
    }
    
    .header-top-item i {
        font-size: 12px;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .nav-menu > li > a {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .whatsapp-button,
    .phone-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    * {
        max-width: 100%;
    }
    
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    #map {
        height: 300px;
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
    }
    
    .statistic-card {
        padding: 30px 20px;
    }
    
    .statistic-number {
        font-size: 38px;
    }
    
    .statistic-label {
        font-size: 15px;
    }
    
    .service-card-inner {
        flex-direction: row;
        gap: 12px;
        padding: 20px 15px;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        min-width: 48px;
    }
    
    .service-icon i {
        font-size: 20px;
    }
    
    .service-card h3 {
        font-size: 15px;
        line-height: 1.3;
    }
    
    .service-card p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .header-top-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 0 10px;
    }
    
    .header-top-left,
    .header-top-right {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .header-top-item {
        font-size: 11px;
    }
    
    .logo {
        gap: 12px;
    }
    
    .logo-image {
        height: 55px;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text p {
        font-size: 11px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        padding: 8px;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        width: 100%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active {
        max-height: 80vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 8px 0;
        width: 100%;
    }
    
    .nav-menu > li {
        width: 100%;
    }
    
    .nav-menu > li > a {
        padding: 14px 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 15px;
        display: block;
        width: 100%;
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .nav-menu > li > a::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        border-top: none;
        border-radius: 0;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    
    .dropdown-menu a {
        padding-left: 35px;
        padding-right: 18px;
        color: rgba(255, 255, 255, 0.9);
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        border-left-color: var(--accent-color);
    }
    
    .hero-content h1 {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .hero-content p {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .section-title h2 {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .section-title h2::after {
        width: 50px;
        height: 3px;
    }
    
    .section-title p {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .service-card-inner {
        padding: 20px 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        border-radius: 8px;
        min-width: 50px;
    }
    
    .service-card h3 {
        font-size: 16px;
        line-height: 1.3;
    }
    
    .service-card p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .service-card .btn {
        padding: 12px 18px;
        font-size: 13px;
        min-height: 44px;
        width: 100%;
        touch-action: manipulation;
    }
    
    .features-grid,
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 25px 18px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .feature-item h3 {
        font-size: 17px;
    }
    
    .feature-item p {
        font-size: 13px;
    }
    
    .sector-card {
        padding: 20px 15px;
        flex-direction: row;
        gap: 12px;
    }
    
    .sector-icon {
        width: 45px;
        height: 45px;
        font-size: 24px;
        background: transparent;
        min-width: 45px;
    }
    
    .sector-card h3 {
        font-size: 15px;
    }
    
    .sector-card p {
        font-size: 12px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 25px 18px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 14px;
        font-size: 16px;
        min-height: 44px;
        -webkit-appearance: none;
        border-radius: 6px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-logo-img {
        max-width: 140px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-links a {
        font-size: 14px;
        padding: 8px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }
}

/* WhatsApp and Phone Floating Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.float-button-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.whatsapp-button {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #075E54 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 4px rgba(37, 211, 102, 0.1);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.whatsapp-button:hover::before {
    width: 300px;
    height: 300px;
}

.whatsapp-button:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.7), 0 0 0 6px rgba(37, 211, 102, 0.15);
    background: linear-gradient(135deg, #2FE576 0%, #25D366 50%, #128C7E 100%);
    border-color: rgba(255, 255, 255, 0.4);
}

.whatsapp-button:active {
    transform: scale(1.05) translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
}

.whatsapp-button i {
    position: relative;
    z-index: 1;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.whatsapp-tooltip {
    background: var(--primary-color);
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 23, 58, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s;
    position: relative;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid var(--primary-color);
}

.float-button-wrapper:hover .whatsapp-tooltip,
.float-button-wrapper:hover .phone-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    transform: scale(0);
    animation: ripple 2s infinite;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.phone-button {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00a8ff 0%, #0066cc 50%, #004499 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    box-shadow: 0 6px 20px rgba(0, 168, 255, 0.5), 0 0 0 4px rgba(0, 168, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.phone-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.phone-button:hover::before {
    width: 350px;
    height: 350px;
}

.phone-button:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 168, 255, 0.7), 0 0 0 6px rgba(0, 168, 255, 0.15);
    background: linear-gradient(135deg, #00c8ff 0%, #00a8ff 50%, #0080ff 100%);
    border-color: rgba(255, 255, 255, 0.4);
}

.phone-button:active {
    transform: scale(1.05) translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.5);
}

.phone-button i {
    position: relative;
    z-index: 1;
    animation: phonePulse 2s infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes phonePulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.05) rotate(-5deg);
    }
    50% {
        transform: scale(1.1) rotate(0deg);
    }
    75% {
        transform: scale(1.05) rotate(5deg);
    }
}

.phone-tooltip {
    background: var(--primary-color);
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 23, 58, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s;
    position: relative;
    pointer-events: none;
}

.phone-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid var(--primary-color);
}


.phone-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 168, 255, 0.4);
    transform: scale(0);
    animation: ripple 2s infinite;
    pointer-events: none;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button,
    .phone-button {
        width: 64px;
        height: 64px;
        font-size: 32px;
    }
    
    .whatsapp-tooltip {
        font-size: 13px;
        padding: 10px 15px;
    }
}

