/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e63946;
    --secondary-color: #457b9d;
    --dark-color: #1d3557;
    --light-color: #f1faee;
    --accent-color: #a8dadc;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --gray: #f5f5f5;
    --border-color: #e0e0e0;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

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

/* Responsive images - tüm sayfalar için */
img:not(.logo-img):not(.slider-image) {
    max-width: 100%;
    height: auto;
}

img.slider-image {
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    margin: 0;
    padding: 0;
}

.header-top {
    background: var(--dark-color);
    color: var(--white);
    width: 100%;
    padding: 10px 0;
}

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

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.contact-info i {
    margin-right: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 16px;
    transition: transform 0.3s, color 0.3s;
}

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

.navbar {
    width: 100%;
    background: #0c71c9;
    position: relative;
    z-index: 1001;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
    z-index: 10;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    display: block;
    padding: 5px 0;
    cursor: pointer;
    pointer-events: auto;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
    background: var(--white);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    opacity: 0.9;
}

.nav-menu a i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s;
}

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

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

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #0c71c9;
    border-left-color: #0c71c9;
    padding-left: 25px;
}

.dropdown-menu a::after {
    display: none;
}

.hamburger {
    display: none; /* 992px altında flex ile gösterilir */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 3px;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 780px;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 45%, #084a7a 100%);
    display: flex;
    align-items: center;
    padding: 130px 0 110px;
    overflow: hidden;
}

/* Hero Top Animation */
.hero-top-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
}

.animation-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.1) 30%,
        transparent 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    animation: waveMove 8s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(0) scaleY(1);
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    }
    50% {
        transform: translateX(-20px) scaleY(1.05);
        clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    }
}

.animation-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: particleFloat 12s ease-in-out infinite;
}

.particle-1 {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    width: 6px;
    height: 6px;
}

.particle-2 {
    left: 30%;
    top: 40%;
    animation-delay: 2s;
    width: 10px;
    height: 10px;
}

.particle-3 {
    left: 60%;
    top: 15%;
    animation-delay: 4s;
    width: 7px;
    height: 7px;
}

.particle-4 {
    left: 80%;
    top: 35%;
    animation-delay: 6s;
    width: 9px;
    height: 9px;
}

.particle-5 {
    left: 50%;
    top: 60%;
    animation-delay: 8s;
    width: 8px;
    height: 8px;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(20px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-50px) translateX(-15px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-20px) translateX(25px) scale(1.1);
        opacity: 0.9;
    }
}

.animation-icons {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10%;
}

.animation-icons i {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.7);
    animation: iconFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s;
}

.animation-icons i:nth-child(1) {
    animation-delay: 0s;
}

.animation-icons i:nth-child(2) {
    animation-delay: 1.5s;
    font-size: 36px;
}

.animation-icons i:nth-child(3) {
    animation-delay: 3s;
    font-size: 30px;
}

.animation-icons i:nth-child(4) {
    animation-delay: 4.5s;
    font-size: 34px;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) rotate(5deg) scale(1.1);
        opacity: 1;
    }
}

.animation-icons i:hover {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.3) rotate(10deg);
    filter: drop-shadow(0 6px 12px rgba(255, 255, 255, 0.5));
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -30px) scale(1.1); }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.hero-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 2px, transparent 2px),
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
    background-size: 60px 60px, 80px 80px, 200px 200px;
    background-position: 0 0, 40px 40px, 0 0;
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0, 40px 40px, 0 0; }
    100% { background-position: 60px 60px, 100px 100px, 200px 200px; }
}

/* Transportation Animation */
.transportation-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
    z-index: 1;
    opacity: 0.15;
}

.road-lane {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, 
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%);
    border-top: 2px solid rgba(255, 255, 255, 0.4);
}

.road-lines {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(
        to right,
        rgba(255, 255, 255, 0.6) 0px,
        rgba(255, 255, 255, 0.6) 40px,
        transparent 40px,
        transparent 80px
    );
    animation: roadMove 3s linear infinite;
}

@keyframes roadMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(80px); }
}

.truck {
    position: absolute;
    bottom: 50px;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.8);
    animation: truckMove 20s linear infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.truck-1 {
    left: -100px;
    animation-duration: 18s;
    animation-delay: 0s;
    font-size: 42px;
}

.truck-2 {
    left: -100px;
    animation-duration: 22s;
    animation-delay: 5s;
    font-size: 52px;
    bottom: 60px;
}

.truck-3 {
    left: -100px;
    animation-duration: 25s;
    animation-delay: 10s;
    font-size: 38px;
    bottom: 45px;
}

@keyframes truckMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(25vw) translateY(-3px);
    }
    50% {
        transform: translateX(50vw) translateY(0);
    }
    75% {
        transform: translateX(75vw) translateY(-2px);
    }
    100% {
        transform: translateX(100vw) translateY(0);
    }
}

.truck:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 6px 12px rgba(255, 255, 255, 0.5));
}

/* Additional floating elements */
.transportation-animation::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 10%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatCloud 15s ease-in-out infinite;
    box-shadow: 
        80px 30px 0 -10px rgba(255, 255, 255, 0.08),
        -60px 50px 0 -5px rgba(255, 255, 255, 0.06);
}

.transportation-animation::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: floatCloud 20s ease-in-out infinite reverse;
    box-shadow: 
        100px 40px 0 -8px rgba(255, 255, 255, 0.05),
        -80px 60px 0 -3px rgba(255, 255, 255, 0.04);
}

@keyframes floatCloud {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -20px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 15px) scale(0.9);
    }
}

/* Responsive adjustments for hero top animation */
@media (max-width: 1024px) {
    .hero-top-animation {
        height: 100px;
    }
    
    .animation-icons i {
        font-size: 28px;
    }
    
    .animation-icons i:nth-child(2) {
        font-size: 32px;
    }
    
    .animation-icons i:nth-child(3) {
        font-size: 26px;
    }
    
    .animation-icons i:nth-child(4) {
        font-size: 30px;
    }
    
    .particle {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 768px) {
    .hero-top-animation {
        height: 80px;
    }
    
    .animation-icons {
        padding: 0 5%;
    }
    
    .animation-icons i {
        font-size: 24px;
    }
    
    .animation-icons i:nth-child(2) {
        font-size: 28px;
    }
    
    .animation-icons i:nth-child(3) {
        font-size: 22px;
    }
    
    .animation-icons i:nth-child(4) {
        font-size: 26px;
    }
    
    .particle {
        width: 5px;
        height: 5px;
    }
}

@media (max-width: 480px) {
    .hero-top-animation {
        height: 60px;
    }
    
    .animation-icons i {
        font-size: 20px;
    }
    
    .animation-icons i:nth-child(2) {
        font-size: 24px;
    }
    
    .animation-icons i:nth-child(3) {
        font-size: 18px;
    }
    
    .animation-icons i:nth-child(4) {
        font-size: 22px;
    }
}

/* Responsive adjustments for transportation animation */
@media (max-width: 1024px) {
    .transportation-animation {
        height: 150px;
        opacity: 0.12;
    }
    
    .truck {
        font-size: 36px;
    }
    
    .truck-1 {
        font-size: 32px;
    }
    
    .truck-2 {
        font-size: 40px;
    }
    
    .truck-3 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .transportation-animation {
        height: 120px;
        opacity: 0.1;
    }
    
    .road-lane {
        height: 60px;
    }
    
    .road-lines {
        bottom: 30px;
        height: 3px;
    }
    
    .truck {
        font-size: 28px;
        bottom: 35px;
    }
    
    .truck-1 {
        font-size: 26px;
        bottom: 35px;
    }
    
    .truck-2 {
        font-size: 32px;
        bottom: 40px;
    }
    
    .truck-3 {
        font-size: 24px;
        bottom: 30px;
    }
    
    .transportation-animation::before,
    .transportation-animation::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .transportation-animation {
        height: 100px;
    }
    
    .truck {
        font-size: 24px;
    }
    
    .truck-1 {
        font-size: 22px;
    }
    
    .truck-2 {
        font-size: 28px;
    }
    
    .truck-3 {
        font-size: 20px;
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    color: var(--white);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    animation: fadeInUp 1s;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
    animation: fadeInUp 1s 0.2s both;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1s 0.3s both;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.hero-feature-item i {
    color: #4ade80;
    font-size: 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s 0.4s both;
}

.btn-hero {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    animation: fadeInUp 1s 0.5s both;
}

.hero-stat-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.hero-stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.hero-stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.hero-stat-label {
    font-size: 16px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: #c1121f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

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

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

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, var(--white) 100%);
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(12, 113, 201, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(12, 113, 201, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-preview-card {
    background: var(--white);
    border-radius: 20px;
    padding: 45px 50px;
    box-shadow: 0 15px 50px rgba(12, 113, 201, 0.12);
    border: 2px solid rgba(12, 113, 201, 0.08);
    position: relative;
    overflow: hidden;
}

.about-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0c71c9 0%, #0a5ba8 50%, #084a7a 100%);
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-preview-text {
    padding-right: 15px;
}

.about-title-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s;
}

.about-title-link:hover {
    transform: translateX(10px);
}

.about-title-link .section-title-left {
    transition: color 0.3s;
    cursor: pointer;
}

.about-title-link:hover .section-title-left {
    color: #0c71c9;
}

.about-lead {
    font-size: 19px;
    color: #0c71c9;
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1.6;
}

.about-preview-text p {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 15px;
}

.about-preview-image {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(12, 113, 201, 0.3);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(12, 113, 201, 0.4);
}

.about-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image-placeholder:hover img {
    transform: scale(1.05);
}

.about-image-placeholder i {
    position: absolute;
    z-index: 1;
}

/* Services Preview */
/* Services Preview */
.services-preview {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(12, 113, 201, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(12, 113, 201, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

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

.services-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

@media (max-width: 1024px) {
    .services-summary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .services-summary-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.service-summary-card {
    background: var(--white);
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(12, 113, 201, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0c71c9 0%, #0a5ba8 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.service-summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(12, 113, 201, 0.2);
    border-color: rgba(12, 113, 201, 0.3);
}

.service-summary-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: 0 6px 15px rgba(12, 113, 201, 0.25);
    transition: all 0.3s ease;
}

.service-summary-card:hover .service-summary-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 22px rgba(12, 113, 201, 0.35);
}

.service-summary-image {
    width: 100%;
    height: 220px;
    margin-bottom: 0;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.service-summary-card:hover .service-summary-image {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(12, 113, 201, 0.35);
}

.service-summary-card:hover .service-image {
    transform: scale(1.05);
}

.service-summary-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 600;
    transition: color 0.3s;
    line-height: 1.3;
    padding: 0 18px;
    margin-top: 15px;
}

.service-summary-card:hover h3 {
    color: #0c71c9;
}

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

.service-summary-card .btn {
    margin-top: auto;
    align-self: center;
    padding: 10px 24px;
    margin-bottom: 18px;
    font-size: 13px;
}

.services-cta {
    text-align: center;
    margin-top: 30px;
}

.section-title {
    text-align: center;
    font-size: 44px;
    margin-bottom: 18px;
    color: var(--dark-color);
    position: relative;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title-left {
    text-align: left;
    font-size: 44px;
    margin-bottom: 25px;
    color: var(--dark-color);
    position: relative;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 55px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 65px;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 0;
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-header-card {
        padding: 30px 20px;
        text-align: center;
    }
    
    .service-main-title {
        font-size: 24px;
    }
    
    .service-main-subtitle {
        font-size: 15px;
    }
}

.service-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(12, 113, 201, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-header-card {
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    border: none;
    text-align: left;
    justify-content: center;
    padding: 40px 30px;
}

.service-header-card::before {
    display: none;
}

.service-header-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(12, 113, 201, 0.3);
}

.service-header-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-main-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

.service-main-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0c71c9 0%, #0a5ba8 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(12, 113, 201, 0.2);
    border-color: rgba(12, 113, 201, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(12, 113, 201, 0.25);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(12, 113, 201, 0.35);
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
    line-height: 1.4;
}

.service-card:hover h3 {
    color: #0c71c9;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 14px;
    flex-grow: 1;
}

.service-link {
    color: #0c71c9;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
    margin-top: auto;
    align-self: center;
}

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

.service-link:hover {
    color: #0a5ba8;
    gap: 8px;
}

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

/* Gallery Preview Section */
.gallery-preview {
    padding: 120px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, var(--white) 100%);
    position: relative;
}

.gallery-preview-card {
    background: var(--white);
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 15px 50px rgba(12, 113, 201, 0.15);
    border: 2px solid rgba(12, 113, 201, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.gallery-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #0c71c9, #0a5ba8);
    transform: scaleY(0);
    transition: transform 0.4s;
}

.gallery-preview-card:hover::before {
    transform: scaleY(1);
}

.gallery-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(12, 113, 201, 0.25);
    border-color: rgba(12, 113, 201, 0.3);
}

.gallery-title-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s;
}

.gallery-title-link:hover {
    transform: translateX(10px);
}

.gallery-title-link .section-title {
    transition: color 0.3s;
    cursor: pointer;
}

.gallery-title-link:hover .section-title {
    color: #0c71c9;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-preview-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(12, 113, 201, 0.15);
    border: 2px solid rgba(12, 113, 201, 0.1);
}

.gallery-preview-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 55px rgba(12, 113, 201, 0.3);
    border-color: rgba(12, 113, 201, 0.3);
}

.gallery-preview-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.gallery-preview-item:hover .gallery-preview-image {
    background: linear-gradient(135deg, #0a5ba8 0%, #084a8f 100%);
    color: rgba(255, 255, 255, 0.5);
}

.gallery-preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-preview-item:hover .gallery-preview-overlay {
    transform: translateY(0);
}

.gallery-preview-overlay h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.gallery-preview-button {
    text-align: center;
}

/* Why Choose Us */
.why-choose-us {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 50%, #f0f7ff 100%);
    position: relative;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(12, 113, 201, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(12, 113, 201, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 50px;
}

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

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.feature-card {
    background: var(--white);
    padding: 20px 16px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(12, 113, 201, 0.1);
    border: 2px solid rgba(12, 113, 201, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(12, 113, 201, 0.1), transparent);
    transition: left 0.5s;
}

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

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(12, 113, 201, 0.25);
    border-color: rgba(12, 113, 201, 0.4);
    background: linear-gradient(135deg, var(--white) 0%, #f0f7ff 100%);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: 0 6px 18px rgba(12, 113, 201, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0c71c9, #0a5ba8);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
    filter: blur(15px);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 28px rgba(12, 113, 201, 0.5);
}

.feature-card:hover .feature-icon::after {
    opacity: 0.7;
}

.feature-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 12px;
    margin: 0;
}

/* Statistics */
.statistics {
    padding: 120px 0;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 50%, #084a7a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.statistics::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section.modern-testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section.modern-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(12, 113, 201, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(10, 91, 168, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-card {
    background: var(--white);
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 15px 50px rgba(12, 113, 201, 0.15);
    border: 2px solid rgba(12, 113, 201, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonials-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #0c71c9, #0a5ba8);
    transform: scaleY(0);
    transition: transform 0.4s;
}

.testimonials-card:hover::before {
    transform: scaleY(1);
}

.testimonials-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(12, 113, 201, 0.25);
    border-color: rgba(12, 113, 201, 0.3);
}

.testimonials-grid.modern-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.testimonial-card.modern-testimonial {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 35px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(12, 113, 201, 0.12);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-card.modern-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0c71c9, #0a5ba8, #0c71c9);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.testimonial-card.modern-testimonial::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(12, 113, 201, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.testimonial-card.modern-testimonial:hover::after {
    opacity: 1;
}

.testimonial-card.modern-testimonial:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(12, 113, 201, 0.28);
    border-color: rgba(12, 113, 201, 0.3);
    background: rgba(255, 255, 255, 1);
}

.testimonial-quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(12, 113, 201, 0.1) 0%, rgba(10, 91, 168, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #0c71c9;
    font-size: 24px;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.testimonial-card.modern-testimonial:hover .testimonial-quote-icon {
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(12, 113, 201, 0.3);
}

.testimonial-content {
    margin-bottom: 25px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    color: var(--text-light);
    line-height: 1.9;
    font-style: italic;
    font-size: 16px;
    position: relative;
    padding-left: 0;
    transition: color 0.3s;
}

.testimonial-card.modern-testimonial:hover .testimonial-content p {
    color: var(--text-color);
}

.testimonial-content p::before {
    content: '';
    display: none;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 16px;
    transition: all 0.3s;
}

.testimonial-card.modern-testimonial:hover .testimonial-rating i {
    transform: scale(1.1);
    color: #ffb300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    padding-top: 20px;
    border-top: 1px solid rgba(12, 113, 201, 0.1);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(12, 113, 201, 0.3);
    transition: all 0.4s;
}

.testimonial-card.modern-testimonial:hover .testimonial-avatar {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 6px 20px rgba(12, 113, 201, 0.4);
}

.testimonial-author-info {
    flex-grow: 1;
}

.testimonial-author-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--dark-color);
    font-weight: 700;
    transition: color 0.3s;
}

.testimonial-card.modern-testimonial:hover .testimonial-author-info h4 {
    color: #0c71c9;
}

.testimonial-author-info span {
    font-size: 14px;
    color: var(--text-light);
    transition: color 0.3s;
}

.testimonial-card.modern-testimonial:hover .testimonial-author-info span {
    color: #0a5ba8;
}

/* Modern Reference Categories */
.ref-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.ref-category-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 45px 35px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(12, 113, 201, 0.12);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.ref-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0c71c9, #0a5ba8, #0c71c9);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.ref-category-card:hover::before {
    animation-duration: 1s;
}

.ref-category-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 55px rgba(12, 113, 201, 0.25);
    border-color: rgba(12, 113, 201, 0.3);
}

.ref-category-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(12, 113, 201, 0.3);
    transition: all 0.4s;
    position: relative;
}

.ref-category-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(12, 113, 201, 0.2);
    opacity: 0;
    transition: opacity 0.4s;
}

.ref-category-card:hover .ref-category-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(12, 113, 201, 0.4);
}

.ref-category-card:hover .ref-category-icon::after {
    opacity: 1;
    animation: pulse 2s ease infinite;
}

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

.ref-category-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: color 0.3s;
}

.ref-category-card:hover h3 {
    color: #0c71c9;
}

.ref-category-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 15px;
}

.ref-count {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 15px;
    transition: all 0.3s;
    display: inline-block;
}

.ref-category-card:hover .ref-count {
    transform: scale(1.1);
}
    opacity: 0.3;
}

.testimonial-author h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* References Slider Section */
.references-slider-section {
    padding: 50px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.references-slider-section .section-header {
    margin-bottom: 30px;
}

.references-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    margin-top: 0;
}

.references-slider-track {
    display: flex;
    gap: 30px;
    animation: slideReferences 30s linear infinite;
    width: fit-content;
}

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

.reference-logo-item {
    flex: 0 0 auto;
    width: 200px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-logo-box {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(12, 113, 201, 0.1);
    border: 2px solid rgba(12, 113, 201, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.reference-logo-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(12, 113, 201, 0.1), transparent);
    transition: left 0.5s;
}

.reference-logo-box:hover::before {
    left: 100%;
}

.reference-logo-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(12, 113, 201, 0.25);
    border-color: rgba(12, 113, 201, 0.3);
    background: linear-gradient(135deg, var(--white) 0%, #f0f7ff 100%);
}

.reference-logo-box i {
    font-size: 48px;
    color: #0c71c9;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.reference-logo-box:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #0a5ba8;
}

.reference-logo-box span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
    margin-top: 5px;
}

.reference-logo-box img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s;
}

.reference-logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

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

/* Blog Section */
.blog-section {
    padding: 60px 0;
    background: var(--white);
    position: relative;
}

.blog-section-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    transition: none;
    position: relative;
    overflow: visible;
}

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

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

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(12, 113, 201, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(12, 113, 201, 0.2);
    border-color: rgba(12, 113, 201, 0.3);
}

.blog-date {
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    color: var(--white);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin: 15px 15px 10px;
    border-radius: 6px;
}

.blog-card h3 {
    font-size: 16px;
    margin: 0 15px 12px;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 15px 15px;
    font-size: 14px;
    flex-grow: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #0c71c9;
    text-decoration: none;
    font-weight: 600;
    margin: 0 15px 15px;
    font-size: 13px;
    transition: gap 0.3s, color 0.3s;
}

.blog-link:hover {
    gap: 8px;
    color: #0a5ba8;
}

/* FAQ Section */
.faq-section {
    padding: 50px 0;
    background: var(--white);
}

.faq-section .section-header {
    margin-bottom: 30px;
}

.faq-section .section-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.faq-section .section-subtitle {
    font-size: 15px;
    margin-bottom: 0;
}

.faq-container {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 16px 18px;
    margin-bottom: 12px;
    border-radius: 8px;
    border-left: 3px solid #0c71c9;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #f0f4f8;
    border-left-color: #0a5ba8;
    transform: translateX(3px);
    box-shadow: 0 3px 10px rgba(12, 113, 201, 0.1);
}

.faq-question {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.4;
}

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

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 50%, #084a7a 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 300;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--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 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer-credit {
    margin-top: 10px;
    font-size: 14px;
}

.footer-credit a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-credit a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.footer-credit a::before {
    content: '💻';
    font-size: 16px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
    margin-bottom: 60px;
}

/* Page Slider */
.page-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 0;
}

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

/* Hero Content Overlay on Slider */
.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content-overlay .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content-overlay .hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content-overlay .hero-content {
    color: var(--white);
}

.hero-content-overlay .hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.hero-content-overlay .hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.hero-content-overlay .hero-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.hero-content-overlay .hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content-overlay .hero-feature-item i {
    color: #4ade80;
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-content-overlay .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-content-overlay .hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.hero-content-overlay .hero-stat-item {
    text-align: center;
    color: var(--white);
}

.hero-content-overlay .hero-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    margin-bottom: 5px;
}

.hero-content-overlay .hero-stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.page-slider-page-name {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.page-slider-page-name:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.page-slide.active {
    opacity: 1;
}

.page-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    position: relative;
}

.slider-image:not([src]),
.slider-image[src=""] {
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
}

.slider-image:not([src])::after,
.slider-image[src=""]::after {
    content: '\f03e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

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

.page-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.page-slider-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

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

.page-slider-prev,
.page-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.page-slider-prev {
    left: 20px;
}

.page-slider-next {
    right: 20px;
}

.page-slider-prev:hover,
.page-slider-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 16px;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.6;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

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

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-text .lead {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Mission Vision */
.mission-vision {
    padding: 80px 0;
    background: var(--gray);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--dark-color);
}

.mv-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: var(--gray);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.value-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image .image-placeholder {
    height: 100%;
    border-radius: 0;
}

.team-card h4 {
    font-size: 22px;
    margin: 20px 0 10px;
    color: var(--dark-color);
}

.team-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Overview Page */
.services-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(12, 113, 201, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(12, 113, 201, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.services-overview .section-header {
    margin-bottom: 60px;
}

.services-overview .section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-overview .section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .services-grid-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid-page {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.service-card-page {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(12, 113, 201, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.service-card-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0c71c9 0%, #0a5ba8 50%, #0c71c9 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card-page:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(12, 113, 201, 0.25);
    border-color: rgba(12, 113, 201, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.service-card-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
}

.service-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 113, 201, 0.9) 0%, rgba(10, 91, 168, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card-page:hover .service-card-image::after {
    opacity: 1;
}

.service-image-wrapper {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 50%, #084a7a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.service-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.4s;
}

.service-card-page:hover .service-image-wrapper::before {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.15);
}

.service-card-page:hover .service-image-wrapper {
    transform: scale(1.1) rotate(5deg);
    color: rgba(255, 255, 255, 1);
    font-size: 60px;
}

.service-card-content {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s;
}

.service-card-page:hover .service-card-content h3 {
    color: #0c71c9;
}

.service-card-content > p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
    font-size: 13px;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.service-features-list li {
    padding: 6px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    transition: all 0.3s;
    position: relative;
    padding-left: 6px;
}

.service-features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    border-radius: 2px;
    transition: height 0.3s;
}

.service-card-page:hover .service-features-list li::before {
    height: 60%;
}

.service-features-list li:hover {
    color: #0c71c9;
    transform: translateX(5px);
}

.service-features-list i {
    color: #0c71c9;
    font-size: 11px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 113, 201, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s;
}

.service-card-page:hover .service-features-list i {
    background: rgba(12, 113, 201, 0.2);
    transform: scale(1.1);
}

.service-card-content .btn {
    align-self: flex-start;
    margin-top: auto;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    color: var(--white);
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

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

.service-card-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(12, 113, 201, 0.4);
    background: linear-gradient(135deg, #0a5ba8 0%, #084a7a 100%);
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
    background: var(--white);
}

.service-detail-item {
    margin-bottom: 80px;
}

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

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse > * {
    direction: ltr;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.service-detail-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-detail-text .lead {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.service-detail-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin: 30px 0;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--primary-color);
}

.service-detail-image {
    position: relative;
}

.service-detail-image .image-placeholder {
    height: 400px;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--gray);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image .image-placeholder {
    height: 100%;
    border-radius: 0;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230, 57, 70, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 48px;
    color: var(--white);
}

.gallery-caption {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: var(--dark-color);
}

/* Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
}

.lightbox-image .image-placeholder {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    padding: 20px;
    font-size: 18px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close {
    top: 20px;
    right: 30px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
}

/* Contact Section */
/* Modern Contact Page Styles */

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

.contact-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;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.contact-hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
}

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

.btn-large {
    padding: 18px 35px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-large i {
    font-size: 20px;
}

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

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

/* Contact Info Modern Cards */
.contact-info-modern-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-info-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-info-modern-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.contact-info-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-info-modern-card:hover::before {
    transform: scaleX(1);
}

.contact-info-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.contact-info-modern-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.contact-info-modern-card:hover .contact-info-modern-icon {
    transform: rotate(5deg) scale(1.1);
}

.contact-info-modern-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
}

.contact-info-modern-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-info-modern-content p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-info-modern-content p a:hover {
    color: var(--secondary-color);
}

.contact-info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-info-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

.contact-info-link i {
    transition: transform 0.3s;
}

.contact-info-link:hover i {
    transform: translateX(5px);
}

/* Contact Form & Map Section */
.contact-form-map-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--gray), var(--white));
}

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

.contact-form-modern-wrapper,
.contact-map-modern-wrapper {
    background: var(--white);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.contact-form-modern-header,
.contact-map-modern-header {
    margin-bottom: 40px;
    text-align: center;
}

.contact-form-modern-header h2,
.contact-map-modern-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
}

.contact-form-modern-header p,
.contact-map-modern-header p {
    color: var(--text-light);
    font-size: 16px;
}

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

.form-group-modern {
    position: relative;
}

.form-group-modern label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 15px;
}

.form-group-modern label i {
    color: var(--primary-color);
    font-size: 16px;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
    transform: translateY(-2px);
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
    color: #999;
}

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

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

.btn-block-modern {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.btn-block-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.3);
}

/* Map Modern Styles */
.map-container-modern {
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 25px;
    border-radius: 15px;
    color: var(--white);
}

.map-info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.map-info-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.map-info-content p {
    margin-bottom: 15px;
    opacity: 0.95;
    line-height: 1.6;
}

.btn-outline-modern {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Social Media Section */
.contact-social-section {
    padding: 80px 0;
    background: var(--dark-color);
    color: var(--white);
}

.contact-social-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-social-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-social-content p {
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.8;
}

.social-links-modern {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 40px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    min-width: 140px;
}

.social-link-modern i {
    font-size: 32px;
    transition: transform 0.3s;
}

.social-link-modern span {
    font-weight: 600;
    font-size: 14px;
}

.social-link-modern:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
}

.social-link-modern:hover i {
    transform: scale(1.2);
}

.social-link-modern.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: #1877f2;
}

.social-link-modern.instagram:hover {
    background: rgba(225, 48, 108, 0.2);
    border-color: #e1306c;
}

.social-link-modern.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: #1da1f2;
}

.social-link-modern.linkedin:hover {
    background: rgba(0, 119, 181, 0.2);
    border-color: #0077b5;
}

.social-link-modern.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25d366;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-form-map-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-modern-wrapper,
    .contact-map-modern-wrapper {
        padding: 35px;
    }
    
    .form-row-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 36px;
    }
    
    .contact-hero-subtitle {
        font-size: 18px;
    }
    
    .contact-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .contact-info-modern-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-modern-header h2,
    .contact-map-modern-header h2 {
        font-size: 28px;
    }
    
    .contact-social-content h2 {
        font-size: 32px;
    }
    
    .social-links-modern {
        gap: 15px;
    }
    
    .social-link-modern {
        padding: 25px 30px;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .contact-hero-section {
        padding: 80px 0 60px;
    }
    
    .contact-hero-content h1 {
        font-size: 28px;
    }
    
    .contact-info-modern-section,
    .contact-form-map-section,
    .contact-social-section {
        padding: 60px 0;
    }
    
    .contact-form-modern-wrapper,
    .contact-map-modern-wrapper {
        padding: 25px;
        border-radius: 20px;
    }
    
    .map-container-modern {
        height: 350px;
    }
    
    .social-link-modern {
        padding: 20px;
        min-width: 100px;
    }
    
    .social-link-modern i {
        font-size: 28px;
    }
}

/* Fixed WhatsApp Button */
.fixed-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.fixed-whatsapp:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    }
}

/* Fixed Phone Button */
.fixed-phone {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #0c71c9;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(12, 113, 201, 0.4);
    transition: all 0.3s;
    text-decoration: none;
    animation: pulse-phone 2s infinite;
}

.fixed-phone:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(12, 113, 201, 0.6);
    background: #0a5ba8;
}

@keyframes pulse-phone {
    0% {
        box-shadow: 0 5px 15px rgba(12, 113, 201, 0.4);
    }
    50% {
        box-shadow: 0 5px 25px rgba(12, 113, 201, 0.6);
    }
    100% {
        box-shadow: 0 5px 15px rgba(12, 113, 201, 0.4);
    }
}

/* References Section */
.references-intro {
    padding: 80px 0;
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.references-categories {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.references-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(12, 113, 201, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.references-list {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.references-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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(12,113,201,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

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

/* Tablet için 2 sütun */
@media (max-width: 1024px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobil için 1 sütun */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.reference-card.modern-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(12, 113, 201, 0.12);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

.reference-card.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0c71c9, #0a5ba8, #0c71c9);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.reference-card.modern-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(12, 113, 201, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.reference-card.modern-card:hover::after {
    opacity: 1;
}

.reference-card.modern-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(12, 113, 201, 0.25);
    border-color: rgba(12, 113, 201, 0.4);
}

.reference-card-inner {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 1;
}

.reference-logo-wrapper {
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reference-logo {
    width: 160px;
    height: 130px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(12, 113, 201, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 20px;
    box-shadow: 0 8px 24px rgba(12, 113, 201, 0.1);
    position: relative;
    overflow: hidden;
}

.reference-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.reference-card.modern-card:hover .reference-logo::before {
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.reference-card.modern-card:hover .reference-logo {
    border-color: rgba(12, 113, 201, 0.4);
    box-shadow: 0 15px 35px rgba(12, 113, 201, 0.25);
    transform: scale(1.08) rotate(2deg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 100%);
}

.reference-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s;
}

.reference-card.modern-card:hover .reference-logo-img {
    transform: scale(1.1);
}

.reference-logo-img:not([src]),
.reference-logo-img[src=""] {
    display: none;
}

.reference-logo:empty,
.reference-logo:not(:has(img[src])) {
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
}

.reference-logo.no-logo::after,
.reference-logo:has(img[style*="display: none"])::after {
    content: '\f1ad';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 55px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
}

.reference-card.modern-card:hover .reference-logo.no-logo::after,
.reference-card.modern-card:hover .reference-logo:has(img[style*="display: none"])::after {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 0.6);
}

.reference-logo.no-logo,
.reference-logo:has(img[style*="display: none"]) {
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
}

.reference-info {
    text-align: center;
    width: 100%;
}

.reference-card.modern-card h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 700;
    transition: color 0.3s;
}

.reference-card.modern-card:hover h4 {
    color: #0c71c9;
}

.reference-type {
    color: #0c71c9;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.reference-card.modern-card:hover .reference-type {
    color: #0a5ba8;
    transform: translateY(-2px);
}

.reference-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(12, 113, 201, 0.1) 0%, rgba(10, 91, 168, 0.1) 100%);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #0c71c9;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s;
    border: 1px solid rgba(12, 113, 201, 0.2);
}

.reference-badge i {
    font-size: 10px;
    color: #0c71c9;
}

.reference-card.modern-card:hover .reference-badge {
    background: linear-gradient(135deg, rgba(12, 113, 201, 0.15) 0%, rgba(10, 91, 168, 0.15) 100%);
    transform: scale(1.05);
    border-color: rgba(12, 113, 201, 0.3);
}

.reference-rating {
    color: #ffc107;
    font-size: 18px;
}

/* Service Hero Section */
.service-hero {
    padding: 80px 0;
    background: var(--white);
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-hero-lead {
    font-size: 20px;
    color: #0c71c9;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-hero-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.service-hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.service-hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-color);
}

.service-hero-feature i {
    color: #0c71c9;
    font-size: 18px;
}

.service-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.service-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(12, 113, 201, 0.3);
}

/* Service Details Section */
.service-details-section {
    padding: 100px 0;
    background: var(--gray);
}

.service-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-detail-box {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-detail-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(12, 113, 201, 0.2);
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}

.service-detail-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-detail-box > p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-list li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-detail-list i {
    color: #0c71c9;
    font-size: 14px;
}

/* City Transport Hero */
.city-transport-hero {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, var(--white) 100%);
}

.city-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.city-hero-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--dark-color);
    line-height: 1.2;
}

.city-hero-lead {
    font-size: 20px;
    color: #0c71c9;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.city-hero-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.city-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.city-stat-item {
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(12, 113, 201, 0.2);
}

.city-stat-number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.city-stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.city-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.city-hero-image {
    position: relative;
}

.city-image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 150px;
    color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(12, 113, 201, 0.3);
}

/* City Services Grid */
.city-services-grid-section {
    padding: 100px 0;
    background: var(--white);
}

.city-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.city-service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(12, 113, 201, 0.1);
    border: 2px solid rgba(12, 113, 201, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.city-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #0c71c9, #0a5ba8);
    transform: scaleY(0);
    transition: transform 0.4s;
}

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

.city-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(12, 113, 201, 0.25);
    border-color: rgba(12, 113, 201, 0.3);
}

.city-service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(12, 113, 201, 0.3);
    transition: transform 0.3s;
}

.city-service-card:hover .city-service-icon {
    transform: scale(1.1) rotate(5deg);
}

.city-service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
}

.city-service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.city-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.city-service-features li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.city-service-features i {
    color: #0c71c9;
    font-size: 14px;
}

/* City Coverage */
.city-coverage-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--white) 0%, #f8f9fa 100%);
}

.city-coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.city-coverage-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(12, 113, 201, 0.1);
    border: 2px solid rgba(12, 113, 201, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.city-coverage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(12, 113, 201, 0.25);
    border-color: rgba(12, 113, 201, 0.3);
}

.coverage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(12, 113, 201, 0.3);
}

.city-coverage-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
}

.city-coverage-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.coverage-districts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.district-tag {
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(12, 113, 201, 0.2);
}

/* City Why Choose */
/* Districts Section */
.districts-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--white) 0%, #f8f9fa 100%);
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.district-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(12, 113, 201, 0.08);
    border: 2px solid rgba(12, 113, 201, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.district-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0c71c9 0%, #0a5ba8 50%, #0c71c9 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.district-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(12, 113, 201, 0.2);
    border-color: rgba(12, 113, 201, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.district-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(12, 113, 201, 0.3);
}

.district-card:hover .district-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(12, 113, 201, 0.4);
}

.district-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.district-card:hover h3 {
    color: #0c71c9;
}

.district-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 48px;
}

.district-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0c71c9;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(12, 113, 201, 0.05);
}

.district-link:hover {
    color: var(--white);
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    transform: translateX(5px);
}

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

.district-link:hover i {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .districts-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .districts-section {
        padding: 60px 0;
    }
    
    .districts-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
        margin-top: 30px;
    }
    
    .district-card {
        padding: 25px 20px;
    }
    
    .district-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .district-card h3 {
        font-size: 18px;
    }
    
    .district-card p {
        font-size: 13px;
        min-height: 40px;
    }
}

@media (max-width: 480px) {
    .districts-grid {
        grid-template-columns: 1fr;
    }
}

.city-why-choose {
    padding: 100px 0;
    background: var(--white);
}

.city-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.city-why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(12, 113, 201, 0.1);
    border: 2px solid rgba(12, 113, 201, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.city-why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(12, 113, 201, 0.25);
    border-color: rgba(12, 113, 201, 0.3);
}

.city-why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(12, 113, 201, 0.3);
    transition: transform 0.3s;
}

.city-why-card:hover .city-why-icon {
    transform: scale(1.1) rotate(5deg);
}

.city-why-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
}

.city-why-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* City Process */
.city-process-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, var(--white) 100%);
}

.city-process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.city-process-step {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(12, 113, 201, 0.1);
    border: 2px solid rgba(12, 113, 201, 0.1);
    text-align: center;
    position: relative;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.city-process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(12, 113, 201, 0.25);
    border-color: rgba(12, 113, 201, 0.3);
}

.process-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(12, 113, 201, 0.3);
}

.process-step-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto 25px;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(12, 113, 201, 0.3);
}

.city-process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
}

.city-process-step p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

.process-arrow {
    font-size: 32px;
    color: #0c71c9;
    opacity: 0.5;
}

/* Coverage Areas */
.coverage-areas {
    padding: 100px 0;
    background: var(--white);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.coverage-item {
    background: var(--gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.coverage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.coverage-item i {
    font-size: 40px;
    color: #0c71c9;
    margin-bottom: 15px;
}

.coverage-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.coverage-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
}

/* Why Choose Service */
.why-choose-service {
    padding: 100px 0;
    background: var(--gray);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-choose-item {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(12, 113, 201, 0.2);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}

.why-choose-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.why-choose-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #0c71c9;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    z-index: 2;
}

.process-icon {
    width: 100px;
    height: 100px;
    margin: 30px auto 20px;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(12, 113, 201, 0.3);
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

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

.process-arrow {
    font-size: 30px;
    color: #0c71c9;
    opacity: 0.5;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 170px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.scroll-to-top:focus {
    outline: none;
}


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

/* Responsive Design - Tablet (992px) */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: #0c71c9;
        width: 100%;
        min-height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
        padding: 110px 20px 40px;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

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

    .nav-menu li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,0,0,0.2);
        box-shadow: none;
        margin-top: 8px;
        padding: 10px 0;
        border-radius: 8px;
        min-width: 100%;
        display: block;
    }

    .dropdown-menu a {
        padding: 12px 20px;
        color: rgba(255,255,255,0.95);
        border-left: none;
        display: block;
        text-align: center;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .logo-img {
        height: 50px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        top: 0;
        padding-top: 70px;
    }

    .page-slider {
        height: 500px;
    }

    .hero-content-overlay {
        padding: 20px 0;
    }

    .hero-content-overlay .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-content-overlay .hero-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-content-overlay .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-content-overlay .hero-features {
        justify-content: center;
        gap: 15px;
        margin-bottom: 25px;
    }

    .hero-content-overlay .hero-feature-item {
        font-size: 14px;
    }

    .hero-content-overlay .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-content-overlay .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 16px;
    }

    .hero-content-overlay .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content-overlay .hero-stat-number {
        font-size: 36px;
    }

    .hero-content-overlay .hero-stat-label {
        font-size: 14px;
    }

    .page-slider-page-name {
        display: none; /* Hidden on mobile */
    }

    .page-slider-prev,
    .page-slider-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .page-slider-prev {
        left: 10px;
    }

    .page-slider-next {
        right: 10px;
    }


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

    .city-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .city-process-steps {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .city-coverage-grid,
    .city-services-grid,
    .city-why-grid {
        grid-template-columns: 1fr;
    }

    .references-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .references-slider-section {
        padding: 60px 0;
    }

    .reference-logo-item {
        width: 150px;
        height: 120px;
    }

    .reference-logo-box {
        padding: 15px;
    }

    .reference-logo-box i {
        font-size: 36px;
    }

    .reference-logo-box span {
        font-size: 12px;
    }

    .fixed-whatsapp {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 90px;
        right: 20px;
    }

    .fixed-phone {
        width: 55px;
        height: 55px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-to-top {
        bottom: 155px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .header-top {
        padding: 8px 0;
    }

    .contact-info {
        gap: 10px;
        font-size: 12px;
    }

    .contact-info a {
        font-size: 12px;
    }

    .social-links {
        gap: 10px;
    }

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

    .navbar-content {
        padding: 12px 0;
    }

    .logo-img {
        height: 45px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #0c71c9;
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 0;
    }

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

    .nav-menu li {
        width: 100%;
        padding: 15px 0;
    }

    .nav-menu .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,0,0,0.2);
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        border-radius: 0;
        min-width: 100%;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu a {
        padding: 10px 20px;
        color: rgba(255,255,255,0.9);
        border-left: none;
    }

    .dropdown-menu a:hover {
        background: rgba(255,255,255,0.1);
        color: var(--white);
        padding-left: 20px;
    }
}

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

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .hero-stat-number {
        font-size: 32px;
    }

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

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

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

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

    .ref-categories-grid,
    .references-grid,
    .service-details-grid,
    .coverage-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

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

    .why-content,
    .about-content,
    .contact-content,
    .service-detail-content {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-content.reverse {
        direction: ltr;
    }

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

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

    .faq-section {
        padding: 40px 0;
    }

    .faq-section .section-title {
        font-size: 24px;
    }

    .faq-item {
        padding: 14px 16px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 13px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

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

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

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-top {
        padding: 6px 0;
    }

    .header-top-content {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

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

    .contact-info a {
        font-size: 11px;
    }

    .social-links {
        gap: 8px;
    }

    .social-links a {
        font-size: 12px;
    }

    .logo-img {
        height: 40px;
    }

    .navbar-content {
        padding: 10px 0;
    }

    .hero {
        min-height: 550px;
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

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

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

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

    .services-preview,
    .faq-section,
    .cta-section {
        padding: 50px 0;
    }

    .faq-item {
        padding: 14px 15px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 13px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .footer {
        padding: 50px 0 15px;
    }

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

    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 14px;
    }

    .contact-list li {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .references-slider-section {
        padding: 50px 0;
    }

    .reference-logo-item {
        width: 120px;
        height: 100px;
    }

    .reference-logo-box {
        padding: 10px;
    }

    .reference-logo-box i {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .reference-logo-box span {
        font-size: 11px;
    }

    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }

    .about-preview {
        padding: 60px 0;
    }

    .services-preview,
    .why-choose-us,
    .statistics,
    .testimonials-section,
    .blog-section,
    .cta-section {
        padding: 60px 0;
    }

    .about-preview-card {
        padding: 35px 25px;
        border-radius: 18px;
    }

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

    .about-image-placeholder {
        height: 280px;
        border-radius: 15px;
    }
    
    .about-lead {
        font-size: 17px;
        margin-bottom: 15px;
    }
    
    .about-preview-text p {
        font-size: 14px;
        margin-bottom: 14px;
        line-height: 1.7;
    }

    .testimonials-card,
    .gallery-preview-card,
    .blog-section-card {
        padding: 40px 30px;
    }

    .page-slider {
        height: 400px;
        margin-bottom: 40px;
    }

    .page-slider-page-name {
        display: none; /* Hidden on mobile */
    }

    .page-slider-prev,
    .page-slider-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .page-slider-prev {
        left: 5px;
    }

    .page-slider-next {
        right: 5px;
    }

    .page-slider-controls {
        bottom: 10px;
    }

    .page-slider-dot {
        width: 8px;
        height: 8px;
    }

    .hero-content-overlay {
        padding: 15px 0;
    }

    .hero-content-overlay .container {
        padding: 0 15px;
    }

    .hero-content-overlay .hero-content-wrapper {
        gap: 25px;
    }

    .hero-content-overlay .hero-content h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .hero-content-overlay .hero-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .hero-content-overlay .hero-features {
        gap: 8px;
        margin-bottom: 20px;
    }

    .hero-content-overlay .hero-feature-item {
        font-size: 12px;
    }

    .hero-content-overlay .hero-feature-item i {
        font-size: 16px;
    }

    .hero-content-overlay .hero-buttons {
        gap: 10px;
    }

    .hero-content-overlay .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-content-overlay .hero-stats {
        gap: 12px;
    }

    .hero-content-overlay .hero-stat-item {
        padding: 15px 10px;
    }

    .hero-content-overlay .hero-stat-number {
        font-size: 28px;
    }

    .hero-content-overlay .hero-stat-label {
        font-size: 12px;
    }

    .fixed-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 80px;
        right: 15px;
    }

    .fixed-phone {
        width: 50px;
        height: 50px;
        font-size: 18px;
        bottom: 15px;
        right: 15px;
    }

    .scroll-to-top {
        bottom: 140px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero {
        height: 500px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-title-left {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 16px;
    }

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

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

    .search-modal-content {
        padding: 30px 20px;
    }
}

/* New References Section Styles */
.references-intro-section {
    padding: 80px 0;
    background: var(--white);
}

.references-intro-section .intro-text {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
}

.references-intro-section .intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.references-companies-section {
    padding: 80px 0 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.references-companies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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(12,113,201,0.02)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.references-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

.reference-company-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(12, 113, 201, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reference-company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0c71c9, #0a5ba8, #0c71c9);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.reference-company-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(12, 113, 201, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.reference-company-card:hover::after {
    opacity: 1;
}

.reference-company-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(12, 113, 201, 0.25);
    border-color: rgba(12, 113, 201, 0.3);
    background: rgba(255, 255, 255, 1);
}

.company-logo-container {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.company-logo {
    width: 180px;
    height: 140px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(12, 113, 201, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 25px;
    box-shadow: 0 8px 24px rgba(12, 113, 201, 0.1);
    position: relative;
    overflow: hidden;
}

.company-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.reference-company-card:hover .company-logo::before {
    animation: shine 1.5s ease-in-out;
}

.reference-company-card:hover .company-logo {
    border-color: rgba(12, 113, 201, 0.4);
    box-shadow: 0 15px 35px rgba(12, 113, 201, 0.25);
    transform: scale(1.08) rotate(1deg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 100%);
}

.company-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s;
}

.reference-company-card:hover .company-logo-img {
    transform: scale(1.1);
}

.company-logo-img:not([src]),
.company-logo-img[src=""] {
    display: none;
}

.company-logo.no-logo::after,
.company-logo:has(img[style*="display: none"])::after {
    content: '\f1ad';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 60px;
    color: rgba(12, 113, 201, 0.2);
    transition: all 0.3s;
}

.reference-company-card:hover .company-logo.no-logo::after,
.reference-company-card:hover .company-logo:has(img[style*="display: none"])::after {
    transform: scale(1.1);
    color: rgba(12, 113, 201, 0.3);
}

.company-logo.no-logo,
.company-logo:has(img[style*="display: none"]) {
    background: linear-gradient(135deg, rgba(12, 113, 201, 0.05) 0%, rgba(10, 91, 168, 0.05) 100%);
}

.company-info {
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.company-name {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 700;
    transition: color 0.3s;
}

.reference-company-card:hover .company-name {
    color: #0c71c9;
}

.company-sector {
    color: #0c71c9;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
}

.reference-company-card:hover .company-sector {
    color: #0a5ba8;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .references-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

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

    .references-companies-section {
        padding: 60px 0 80px;
    }

    .references-grid-new {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .reference-company-card {
        padding: 35px 25px;
        min-height: 250px;
    }

    .company-logo {
        width: 160px;
        height: 120px;
    }
}

/* Medical Gallery Section */
.medical-gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.medical-gallery-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(230,57,70,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.medical-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.medical-gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--white);
}

.medical-gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.2);
}

.medical-gallery-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: var(--gray);
}

.medical-gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.medical-gallery-item:hover .medical-gallery-image {
    transform: scale(1.02);
}

.medical-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(29, 53, 87, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.medical-gallery-item:hover .medical-gallery-overlay {
    opacity: 1;
}

.medical-gallery-content {
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.medical-gallery-item:hover .medical-gallery-content {
    transform: translateY(0);
}

.medical-gallery-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.medical-gallery-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Medical Gallery Responsive */
@media (max-width: 1024px) {
    .medical-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

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

    .medical-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .medical-gallery-image-wrapper {
        padding-top: 70%;
    }

    .medical-gallery-overlay {
        opacity: 1;
        padding: 25px;
    }

    .medical-gallery-content {
        transform: translateY(0);
    }

    .medical-gallery-content h3 {
        font-size: 20px;
    }
}

/* Services Gallery Section */
.services-gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.services-gallery-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-services" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(69,123,157,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid-services)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

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

.services-gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--white);
}

.services-gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(69, 123, 157, 0.25);
}

.services-gallery-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: var(--gray);
}

.services-gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.services-gallery-item:hover .services-gallery-image {
    transform: scale(1.02);
}

.services-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(29, 53, 87, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.services-gallery-item:hover .services-gallery-overlay {
    opacity: 1;
}

.services-gallery-content {
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.services-gallery-item:hover .services-gallery-content {
    transform: translateY(0);
}

.services-gallery-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.services-gallery-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Services Gallery Responsive */
@media (max-width: 1024px) {
    .services-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

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

    .services-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .services-gallery-image-wrapper {
        padding-top: 70%;
    }

    .services-gallery-overlay {
        opacity: 1;
        padding: 25px;
    }

    .services-gallery-content {
        transform: translateY(0);
    }

    .services-gallery-content h3 {
        font-size: 20px;
    }
}

/* Gallery Zoom Icon */
.gallery-zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.services-gallery-item:hover .gallery-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

.gallery-zoom-icon i {
    color: var(--white);
    font-size: 20px;
}

.services-gallery-item {
    cursor: pointer;
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-info {
    margin-top: 30px;
    text-align: center;
    color: var(--white);
    max-width: 800px;
}

.lightbox-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.lightbox-info p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.lightbox-counter {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10002;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Lightbox Responsive */
@media (max-width: 768px) {
    .lightbox-container {
        width: 95%;
        max-height: 95vh;
    }

    .lightbox-content img {
        max-height: 60vh;
    }

    .lightbox-info h3 {
        font-size: 22px;
    }

    .lightbox-info p {
        font-size: 14px;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

/* New Gallery Section Styles */
.gallery-section-new {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section-new::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-gallery" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(230,57,70,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid-gallery)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.gallery-filters-new {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.filter-btn-new {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--border-color);
    color: var(--text-color);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.filter-btn-new:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.2);
}

.filter-btn-new.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
}

.gallery-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.gallery-item-new {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--white);
    opacity: 1;
    transform: scale(1);
}

.gallery-item-new.hidden {
    display: none;
}

.gallery-item-new:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.25);
}

.gallery-image-new {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image-new img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

.gallery-item-new:hover .gallery-image-new img {
    transform: scale(1.02);
}

.gallery-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(29, 53, 87, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.gallery-item-new:hover .gallery-overlay-new {
    opacity: 1;
}

.gallery-overlay-new i {
    color: var(--white);
    font-size: 40px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item-new:hover .gallery-overlay-new i {
    transform: scale(1);
}

.gallery-caption-new {
    padding: 16px 20px 12px;
    text-align: center;
    background: var(--white);
    font-weight: 600;
    color: var(--text-color);
    font-size: 16px;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.gallery-item-new:hover .gallery-caption-new {
    color: var(--primary-color);
}

/* Gallery Card Keywords – anahtar kelimelere uygun, eskisi gibi pill etiket tasarımı */
.gallery-keywords-new {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 20px 18px;
    background: var(--white);
    justify-content: center;
    align-items: center;
}

.gallery-keyword-tag {
    display: inline-block;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(230, 57, 70, 0.08);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 20px;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.gallery-item-new:hover .gallery-keyword-tag {
    background: rgba(230, 57, 70, 0.12);
    border-color: rgba(230, 57, 70, 0.35);
}

.gallery-keyword-tag:hover {
    background: rgba(230, 57, 70, 0.15);
    transform: scale(1.05);
}

.gallery-item-new.broken {
    display: none !important;
}

/* ============================================
   MODERN ABOUT PAGE STYLES
   ============================================ */

/* About Hero Modern */
.about-hero-modern {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(12,113,201,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(12, 113, 201, 0.1);
}

.about-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 24px;
    line-height: 1.1;
}

.about-hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.about-stats .stat-item {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.about-stats .stat-item:hover {
    transform: translateY(-5px);
}

.about-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.about-stats .stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* Hero Images Grid */
.hero-image-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 400px;
}

.hero-image-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

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

.hero-image-item.large {
    grid-row: span 2;
}

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

/* About Content Modern */
.about-content-modern {
    padding: 80px 0;
    background: var(--white);
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 24px;
}

.story-content .lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 24px;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.story-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.story-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Features Grid Modern */
.features-grid-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 24px;
}

.features-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.feature-text p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Feature Images */
.feature-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-img-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-img-item:hover img {
    transform: scale(1.1);
}

.feature-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 20px;
    text-align: center;
    font-weight: 600;
}

/* Mission Vision Modern */
.mission-vision-modern {
    padding: 80px 0;
    background: var(--white);
}

.mv-header {
    text-align: center;
    margin-bottom: 60px;
}

.mv-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
}

.mv-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.mv-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.mv-card-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mv-card-modern.vision {
    grid-template-columns: 1fr 1fr;
}

.mv-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.mv-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.mv-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

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

.mv-stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.mv-stat span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.mv-goals {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.goal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-weight: 500;
}

.goal-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.mv-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mv-card-modern:hover .mv-image img {
    transform: scale(1.05);
}

.mv-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.mv-overlay .mv-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Values Modern */
.values-modern {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.values-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.values-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(29, 53, 87, 0.95), rgba(12, 113, 201, 0.9));
    z-index: 2;
}

.values-modern .container {
    position: relative;
    z-index: 3;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-header .section-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.values-header .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card-modern:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.value-icon-modern {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary-color);
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card-modern:hover .value-icon-modern {
    transform: scale(1.1);
}

.value-card-modern h4 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.value-card-modern p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

.value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

/* Fleet Showcase */
.fleet-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.fleet-header {
    text-align: center;
    margin-bottom: 60px;
}

.fleet-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
}

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

.fleet-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.fleet-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.fleet-item:hover {
    transform: translateY(-10px);
}

.fleet-image {
    position: relative;
    height: 250px;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fleet-item:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.fleet-item:hover .fleet-overlay {
    transform: translateY(0);
}

.fleet-info h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.fleet-info p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 14px;
}

/* Team Modern */
.team-modern {
    padding: 80px 0;
    background: var(--white);
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 24px;
}

.team-text .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.team-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.team-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.team-feature i {
    color: var(--primary-color);
    font-size: 18px;
}

.team-feature span {
    color: var(--text-color);
    font-weight: 600;
}

.team-image-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-image-modern img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.team-stats-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.team-stat {
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .about-hero-content,
    .about-story,
    .features-content,
    .team-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mv-card-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-image-grid {
        height: 300px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-lead {
        font-size: 1.1rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .values-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fleet-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .mv-stats {
        flex-direction: column;
        gap: 15px;
        text-align: left;
    }
    
    .team-stats-overlay {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .about-hero-text h1 {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 150px);
        height: auto;
    }
    
    .hero-image-item.large {
        grid-row: span 1;
    }
}

/* Gallery Responsive */
@media (max-width: 1024px) {
    .gallery-grid-new {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
}

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

    .gallery-filters-new {
        gap: 10px;
        margin-bottom: 40px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 5px;
        margin-left: -10px;
        margin-right: -10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .gallery-filters-new::-webkit-scrollbar {
        height: 4px;
    }

    .filter-btn-new {
        padding: 10px 20px;
        font-size: 14px;
        flex-shrink: 0;
    }

    .gallery-grid-new {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .gallery-image-new {
        padding-top: 70%;
    }

    .gallery-keywords-new {
        padding: 12px 16px 14px;
        gap: 6px;
    }

    .gallery-keyword-tag {
        font-size: 10px;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid-new {
        grid-template-columns: 1fr;
    }

    .filter-btn-new {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ============================================
   LIFTLI KAMYONET SPECIAL SECTION
   ============================================ */
.liftli-kamyonet-special {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.liftli-kamyonet-special::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(12, 113, 201, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.liftli-kamyonet-special::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.liftli-special-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.liftli-special-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0c71c9 0%, #e63946 50%, #0c71c9 100%);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.liftli-special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(12, 113, 201, 0.2);
}

.liftli-special-content {
    flex: 1;
    z-index: 2;
}

.liftli-special-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(12, 113, 201, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

.liftli-special-badge i {
    font-size: 16px;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.liftli-special-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0c71c9 0%, #e63946 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.liftli-special-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.liftli-special-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.liftli-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(12, 113, 201, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.liftli-feature-item:hover {
    background: rgba(12, 113, 201, 0.1);
    transform: translateX(5px);
}

.liftli-feature-item i {
    color: #0c71c9;
    font-size: 20px;
}

.liftli-feature-item span {
    font-weight: 600;
    color: var(--dark-color);
}

.btn-liftli {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, #0c71c9 0%, #0a5ba8 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(12, 113, 201, 0.3);
    transition: all 0.3s ease;
}

.btn-liftli:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(12, 113, 201, 0.4);
    background: linear-gradient(135deg, #0a5ba8 0%, #084a7a 100%);
}

.liftli-special-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.liftli-image-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.liftli-image-wrapper i {
    font-size: 120px;
    color: #0c71c9;
    z-index: 3;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(12, 113, 201, 0.3));
}

.liftli-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    z-index: 3;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: bounce 2s ease-in-out infinite;
}

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

.liftli-animation-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(12, 113, 201, 0.2);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

.liftli-animation-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(12, 113, 201, 0.15);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite 0.5s;
}

.liftli-animation-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(12, 113, 201, 0.1);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite 1s;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsive for Liftli Section */
@media (max-width: 968px) {
    .liftli-kamyonet-special {
        padding: 60px 0;
    }

    .liftli-special-card {
        flex-direction: column;
        padding: 40px 30px;
        gap: 30px;
    }

    .liftli-special-title {
        font-size: 32px;
    }

    .liftli-special-description {
        font-size: 16px;
    }

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

    .liftli-image-wrapper {
        width: 250px;
        height: 250px;
    }

    .liftli-image-wrapper i {
        font-size: 100px;
    }
    
    .liftli-image {
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .liftli-kamyonet-special {
        padding: 50px 0;
    }

    .liftli-special-card {
        padding: 30px 20px;
        gap: 25px;
    }

    .liftli-special-title {
        font-size: 28px;
    }

    .liftli-special-description {
        font-size: 15px;
    }

    .liftli-special-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .btn-liftli {
        padding: 14px 30px;
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    .liftli-image-wrapper {
        width: 400px;
        height: 400px;
    }

    .liftli-image-wrapper i {
        font-size: 80px;
    }
    
    .liftli-image {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .liftli-kamyonet-special {
        padding: 40px 0;
    }

    .liftli-special-card {
        padding: 25px 15px;
        gap: 20px;
    }

    .liftli-special-title {
        font-size: 24px;
    }

    .liftli-special-description {
        font-size: 14px;
    }

    .liftli-special-features {
        gap: 10px;
    }

    .liftli-feature-item {
        padding: 10px;
        font-size: 13px;
    }

    .liftli-image-wrapper {
        width: 300px;
        height: 300px;
    }

    .liftli-image-wrapper i {
        font-size: 60px;
    }
    
    .liftli-image {
        border-radius: 8px;
    }
}

/* ============================================
   VISUAL ENHANCEMENTS - GENERAL
   ============================================ */

/* Enhanced Service Cards with Gradient Hover */
.service-summary-card {
    position: relative;
    overflow: hidden;
}

.service-summary-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.service-summary-card:hover::after {
    left: 100%;
}

/* Enhanced Button Animations */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Enhanced Section Headers */
.section-header {
    position: relative;
    padding-bottom: 20px;
}


/* Enhanced Blog Cards */
.blog-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 113, 201, 0.05) 0%, rgba(230, 57, 70, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced FAQ Items */
.faq-item {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.faq-item:hover {
    border-left-color: #0c71c9;
    padding-left: 15px;
    background: rgba(12, 113, 201, 0.02);
}

/* Enhanced About Preview */
.about-preview-card {
    position: relative;
    overflow: hidden;
}

.about-preview-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(12, 113, 201, 0.03) 0%, transparent 70%);
    animation: rotate-bg 20s linear infinite;
}

@keyframes rotate-bg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Enhanced Reference Logos */
.reference-logo-box {
    transition: all 0.3s ease;
    position: relative;
}

.reference-logo-box::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid transparent;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reference-logo-box:hover::after {
    opacity: 1;
    border-color: #0c71c9;
}

.reference-logo-box:hover {
    transform: scale(1.1);
}

/* Enhanced Hero Stats */
.hero-stat-item {
    position: relative;
    transition: all 0.3s ease;
}

.hero-stat-item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(12, 113, 201, 0.2);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-stat-item:hover::before {
    opacity: 1;
}

.hero-stat-item:hover {
    transform: scale(1.1);
}

/* Smooth Scroll Enhancement */
html {
    scroll-behavior: smooth;
}

/* Enhanced CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(12, 113, 201, 0.1) 0%, rgba(230, 57, 70, 0.1) 100%);
    animation: gradient-move 10s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .liftli-special-card {
        padding: 30px 20px;
    }

    .liftli-special-title {
        font-size: 28px;
    }

    .liftli-special-description {
        font-size: 16px;
    }

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

    /* Hide sections on mobile to shorten page */
    .mobile-hide {
        display: none !important;
    }

    /* Reduce padding on mobile */
    .services-preview,
    .references-slider-section,
    .liftli-kamyonet-special {
        padding: 40px 0;
    }

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

    /* Compact references section on mobile */
    .references-slider-section {
        padding: 30px 0;
    }

    .references-slider-section .section-header {
        margin-bottom: 20px;
    }

    /* Compact liftli kamyonet on mobile */
    .liftli-kamyonet-special {
        padding: 30px 0;
    }

    .liftli-special-card {
        padding: 25px 15px;
    }

    .liftli-special-features {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    /* Further reduce padding on small mobile */
    .services-preview,
    .references-slider-section,
    .liftli-kamyonet-special {
        padding: 30px 0;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }
}

/* ============================================
   SERVICES SLIDER
   ============================================ */
.services-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    margin: 0;
}

.services-slider-track {
    display: flex;
    gap: 30px;
    animation: slideServices 30s linear infinite;
    width: fit-content;
}

#seoServicesSlider {
    animation: slideServices 30s linear infinite;
}

#seoServicesSlider:hover {
    animation-play-state: paused;
}

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

.services-slider-track.manual-control {
    animation: none !important;
    animation-play-state: paused !important;
}

.services-slider-wrapper .service-summary-card {
    flex: 0 0 auto;
    width: 320px;
    min-width: 320px;
}

.services-slider-prev,
.services-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(12, 113, 201, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
}

.references-slider-prev,
.references-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(12, 113, 201, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
}

.references-slider-prev {
    left: 10px;
}

.references-slider-next {
    right: 10px;
}

.references-slider-prev:hover,
.references-slider-next:hover {
    background: rgba(12, 113, 201, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.services-slider-prev:hover,
.services-slider-next:hover {
    background: rgba(12, 113, 201, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.services-slider-prev {
    left: 10px;
}

.services-slider-next {
    right: 10px;
}

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

/* ============================================
   WHY CHOOSE US SLIDER
   ============================================ */
.why-choose-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 60px;
    margin: 30px 0;
}

.why-choose-slider-track {
    display: flex;
    gap: 30px;
    animation: slideWhyChoose 35s linear infinite;
    width: fit-content;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.why-choose-slider-track:hover {
    animation-play-state: paused;
}

.why-choose-slider-track.manual-control {
    animation: none !important;
    animation-play-state: paused !important;
}

.why-choose-slider-wrapper .service-summary-card {
    flex: 0 0 auto;
    width: 320px;
    min-width: 320px;
}

.why-choose-slider-prev,
.why-choose-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(12, 113, 201, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
}

.why-choose-slider-prev:hover,
.why-choose-slider-next:hover {
    background: rgba(12, 113, 201, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.why-choose-slider-prev {
    left: 10px;
}

.why-choose-slider-next {
    right: 10px;
}

@keyframes slideWhyChoose {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-320px * 6 - 30px * 6));
    }
}

/* Responsive for Sliders */
@media (max-width: 768px) {
    .services-slider-wrapper,
    .why-choose-slider-wrapper {
        padding: 30px 50px;
    }

    .services-slider-wrapper .service-summary-card,
    .why-choose-slider-wrapper .service-summary-card {
        width: 280px;
        min-width: 280px;
    }

    .services-slider-prev,
    .services-slider-next,
    .references-slider-prev,
    .references-slider-next,
    .why-choose-slider-prev,
    .why-choose-slider-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .services-slider-prev,
    .why-choose-slider-prev {
        left: 5px;
    }

    .services-slider-next,
    .why-choose-slider-next {
        right: 5px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    @keyframes slideWhyChoose {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 6 - 30px * 6));
        }
    }
}

@media (max-width: 480px) {
    .page-slider {
        height: 400px;
    }

    .hero-content-overlay .hero-content h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-content-overlay .hero-subtitle {
        font-size: 14px;
    }

    .hero-content-overlay .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content-overlay .hero-feature-item {
        font-size: 13px;
    }

    .hero-content-overlay .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-content-overlay .hero-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }

    .hero-content-overlay .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content-overlay .hero-stat-number {
        font-size: 32px;
    }

    .services-slider-wrapper,
    .why-choose-slider-wrapper {
        padding: 20px 45px;
    }

    .services-slider-wrapper .service-summary-card,
    .why-choose-slider-wrapper .service-summary-card {
        width: 250px;
        min-width: 250px;
    }

    .services-slider-prev,
    .services-slider-next,
    .why-choose-slider-prev,
    .why-choose-slider-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .services-slider-prev,
    .why-choose-slider-prev {
        left: 5px;
    }

    .services-slider-next,
    .why-choose-slider-next {
        right: 5px;
    }

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

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

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

/* ============================================
   KAPSAMLI MOBİL UYUMLULUK - TÜM SAYFALAR
   ============================================ */

/* Küçük ekranlar (480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .fixed-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 95px;
        right: 15px;
        min-width: 50px;
        min-height: 50px;
    }

    .fixed-phone {
        width: 50px;
        height: 50px;
        font-size: 18px;
        bottom: 25px;
        right: 15px;
        min-width: 50px;
        min-height: 50px;
    }

    .scroll-to-top {
        bottom: 165px;
        right: 15px;
        width: 42px;
        height: 42px;
    }

    .liftli-image-wrapper {
        width: 100% !important;
        max-width: 280px;
        margin: 0 auto;
    }

    .page-slider {
        height: 400px;
    }

    .btn, .btn-primary, .btn-secondary {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* Çok küçük ekranlar (375px ve altı) */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }

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

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

    .section-title-left {
        font-size: 24px;
    }

    .contact-info a {
        font-size: 11px;
    }

    .filter-btn-new {
        padding: 6px 12px;
        font-size: 12px;
    }

    .fixed-whatsapp,
    .fixed-phone {
        width: 46px;
        height: 46px;
        right: 12px;
        min-width: 46px;
        min-height: 46px;
    }

    .fixed-phone {
        bottom: 12px;
    }
}

/* Form input - iOS zoom önleme (16px altı zoom tetikler) */
@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea {
        font-size: 16px !important;
    }

    select {
        font-size: 16px !important;
    }
}

/* Tablo overflow - yatay kaydırma */
.table-wrapper,
.table-responsive,
.overflow-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

table {
    min-width: 100%;
}

/* Touch için iyileştirmeler - mobil cihazlar */
@media (hover: none) and (pointer: coarse) {
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 16px;
    }

    .filter-btn-new {
        min-height: 44px;
        padding: 10px 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu li {
        min-height: 48px;
    }

    .gallery-keyword-tag {
        min-height: 32px;
        padding: 8px 12px;
        display: inline-flex;
        align-items: center;
    }
}

/* Overflow güvenliği */
body, html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

* {
    -webkit-tap-highlight-color: transparent;
}

