/* ========================================
   Custom CSS for Bayrak Transport Website
   ======================================== */

/* Root Variables */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
}

/* Navbar Sticky Wrapper */
.navbar-sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Desktop - Top bar görünür */
@media (min-width: 992px) {
    .navbar-sticky-wrapper {
        position: sticky;
        top: 0;
    }
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #1a1d20 0%, #2c3136 100%);
    border-bottom: 2px solid rgba(13, 110, 253, 0.3);
    font-size: 0.85rem;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.1), transparent);
    animation: shimmer 3s infinite;
}

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

.top-bar-item {
    position: relative;
    padding: 5px 0;
}

.top-bar-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.top-bar-item a:hover {
    color: var(--primary-color) !important;
    transition: var(--transition);
}

.social-links {
    position: relative;
    z-index: 1;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color) !important;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

/* Navigation */
.navbar {
    transition: var(--transition);
    background: var(--white-color) !important;
    touch-action: auto;
}

/* Language Selector */
.navbar .dropdown-toggle {
    color: var(--dark-color) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar .dropdown-toggle:hover {
    color: var(--primary-color) !important;
}

.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.navbar .dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    background: none;
}

.navbar .dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateX(5px);
}

.navbar .dropdown-item.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.navbar .dropdown-item i {
    width: 20px;
    text-align: center;
}

.navbar-logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

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

.navbar-sticky-wrapper.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15) !important;
}

.navbar-brand {
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand strong {
    font-family: var(--font-secondary);
    letter-spacing: 1px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 5px;
    padding: 8px 15px !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-slide h1 {
    animation: fadeInUp 1s ease;
}

.hero-slide p {
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    animation: fadeInUp 1.4s ease;
}

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

.swiper-button-next,
.swiper-button-prev {
    color: var(--white-color);
    background: rgba(13, 110, 253, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

/* Feature Cards */
.feature-card {
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border-color: var(--primary-color);
}

.feature-icon i {
    transition: var(--transition);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
    color: var(--primary-color) !important;
}

/* About Section */
.about-image img {
    border-radius: 10px;
}

.about-section .position-absolute {
    animation: pulse 2s infinite;
}

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

/* Stats Section */
.stats-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0 !important;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1d29 0%, #2c3e50 50%, #1a2332 100%);
    z-index: 0;
}

.stats-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(13, 110, 253, 0.03) 35px, rgba(13, 110, 253, 0.03) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(13, 110, 253, 0.03) 35px, rgba(13, 110, 253, 0.03) 70px);
    opacity: 0.5;
}

.stats-background::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.15) 0%, transparent 70%);
    animation: statsGlow 15s ease-in-out infinite;
}

@keyframes statsGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(10%, 10%) scale(1.1);
    }
    50% {
        transform: translate(-10%, 10%) scale(1);
    }
    75% {
        transform: translate(10%, -10%) scale(1.1);
    }
}

.stat-item {
    position: relative;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

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

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

.stat-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.4);
    transition: var(--transition);
}

.stat-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #0d6efd, #0a58ca, #0d6efd);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
    animation: iconPulse 2s ease-in-out infinite;
}

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

.stat-item:hover .stat-icon-wrapper {
    transform: rotateY(360deg);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.6);
}

.stat-icon-wrapper i {
    font-size: 2rem;
    color: var(--white-color);
    position: relative;
    z-index: 1;
}

.counter {
    font-family: var(--font-secondary);
    position: relative;
    display: inline-block;
}

.stat-item p {
    letter-spacing: 2px;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 10px;
    line-height: 1.4;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section Badge - Modern */
.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.05) 100%);
    border: 2px solid rgba(13, 110, 253, 0.2);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.section-badge:hover {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.2) 0%, rgba(13, 110, 253, 0.1) 100%);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.section-badge i {
    font-size: 1.1rem;
}

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

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    z-index: 0;
}

.services-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(13, 110, 253, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(13, 110, 253, 0.02) 0%, transparent 50%);
}

/* Service Card Modern */
.service-card-modern {
    transition: var(--transition);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.service-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.2);
}

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

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card-modern:hover .service-image-wrapper img {
    transform: scale(1.15);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.9) 0%, rgba(10, 88, 202, 0.7) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-modern:hover .service-overlay {
    opacity: 1;
}

.service-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--font-secondary);
    transform: scale(0.5);
    transition: var(--transition);
}

.service-card-modern:hover .service-number {
    transform: scale(1);
}

.service-content-modern {
    background: var(--white-color);
    position: relative;
}

.service-icon-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    transition: var(--transition);
}

.service-icon-modern i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.service-card-modern:hover .service-icon-modern {
    transform: rotateY(360deg);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.4);
}

.service-link-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.service-link-modern i {
    transition: var(--transition);
}

.service-link-modern:hover {
    color: #0a58ca;
    gap: 15px;
}

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

/* Old Service Card - Keep for other cards */
.service-card {
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
    border-color: var(--primary-color);
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon i {
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    transform: rotate(360deg);
}

/* Why Us Section Modern */
.why-us-section {
    position: relative;
    overflow: hidden;
}

.why-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    z-index: 0;
}

.why-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 80% 30%, rgba(13, 110, 253, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(13, 110, 253, 0.02) 0%, transparent 50%);
}

.why-item-modern {
    position: relative;
    padding: 35px 30px;
    background: var(--white-color);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    overflow: hidden;
}

.why-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, #0d6efd 0%, #0a58ca 100%);
    transition: var(--transition);
}

.why-item-modern:hover::before {
    height: 100%;
}

.why-item-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.2);
}

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(13, 110, 253, 0.05);
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.why-item-modern:hover .why-number {
    color: rgba(13, 110, 253, 0.1);
    transform: scale(1.1);
}

.why-icon-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.05) 100%);
    border: 2px solid rgba(13, 110, 253, 0.2);
    border-radius: 18px;
    transition: var(--transition);
}

.why-icon-modern i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.why-item-modern:hover .why-icon-modern {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-color: var(--primary-color);
    transform: rotateY(360deg);
}

.why-item-modern:hover .why-icon-modern i {
    color: var(--white-color);
}

/* Old Why Item - Keep for compatibility */
.why-item {
    transition: var(--transition);
}

.why-item:hover {
    background: var(--white-color) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.why-icon i {
    transition: var(--transition);
}

.why-item:hover .why-icon i {
    transform: scale(1.2);
}

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    max-width: 100vw;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1d29 0%, #2c3e50 50%, #1a2332 100%);
    z-index: 0;
}

.page-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(13, 110, 253, 0.03) 35px, rgba(13, 110, 253, 0.03) 70px);
    animation: heroPattern 20s linear infinite;
}

@keyframes heroPattern {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(70px) translateY(70px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-weight: 600;
    color: var(--white-color);
}

.hero-stats {
    margin-top: 30px;
    max-width: 100%;
    overflow-x: hidden;
}

.hero-stat-item {
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    max-width: 100%;
    overflow-x: hidden;
}

.hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.min-vh-50 {
    min-height: 50vh;
}

/* About Images Grid */
.about-images-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 100%;
    overflow-x: hidden;
}

.about-image-main {
    grid-column: 1 / -1;
}

.about-image-small {
    position: relative;
    grid-column: span 1;
}

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

.about-badge-float {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--white-color);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: floatBadge 3s ease-in-out infinite;
    min-width: 100px;
}

.about-badge-float-secondary {
    animation: floatBadge 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

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

.about-badge-float small {
    font-size: 0.85rem;
}

.feature-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.05) 100%);
    border-radius: 10px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Mission & Vision Cards */
.mission-card,
.vision-card {
    position: relative;
    padding: 40px;
    background: var(--white-color);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0d6efd 0%, #0a58ca 100%);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0a58ca 0%, #0d6efd 100%);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(13, 110, 253, 0.15);
}

.mission-icon-wrapper,
.vision-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.05) 100%);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.mission-card:hover .mission-icon-wrapper,
.vision-card:hover .vision-icon-wrapper {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: var(--white-color);
    transform: rotateY(360deg);
}

.mission-quote {
    padding: 20px;
    background: rgba(13, 110, 253, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
}

.goal-item {
    font-weight: 500;
}

/* Value Cards */
.value-card {
    padding: 35px 25px;
    background: var(--white-color);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.2);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 50%;
    color: var(--white-color);
    font-size: 1.8rem;
    margin: 0 auto;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.4);
}

/* Certificate Cards */
.certificate-card {
    padding: 35px;
    background: var(--white-color);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.certificate-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 20px 50px rgba(13, 110, 253, 0.15);
}

.certificate-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.05) 100%);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 2.5rem;
    transition: var(--transition);
}

.certificate-card:hover .certificate-icon {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: var(--white-color);
    transform: scale(1.1);
}

.certificate-badge {
    max-width: 100%;
    overflow-x: hidden;
}

.certificate-badge .badge {
    max-width: 100%;
    word-wrap: break-word;
    white-space: normal;
    text-align: center;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 50px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

/* Sol taraf - Tek sayılar (1,3,5) */
.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(odd) .timeline-badge {
    order: 2;
    margin-left: auto;
    margin-right: auto;
}

.timeline-item:nth-child(odd) .timeline-content {
    order: 1;
    margin-right: 50px;
    max-width: calc(50% - 80px);
}

/* Sağ taraf - Çift sayılar (2,4) */
.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-item:nth-child(even) .timeline-badge {
    order: 1;
    margin-left: auto;
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 2;
    margin-left: 50px;
    max-width: calc(50% - 80px);
}

.timeline-badge {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white-color);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.4);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    padding: 30px;
    background: var(--white-color);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--white-color);
    transform: translateY(-50%) rotate(45deg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Sol taraf - ok sağda */
.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
}

/* Sağ taraf - ok solda */
.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
}

.timeline-content:hover {
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.2);
    transform: translateY(-5px);
}

.timeline-item:nth-child(odd) .timeline-content:hover {
    transform: translateY(-5px) translateX(-10px);
}

.timeline-item:nth-child(even) .timeline-content:hover {
    transform: translateY(-5px) translateX(10px);
}

/* Services Detail Cards */
.service-detail-card {
    background: var(--white-color);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.service-detail-card:hover {
    box-shadow: 0 20px 60px rgba(13, 110, 253, 0.15);
    transform: translateY(-5px);
}

.service-detail-image {
    position: relative;
    height: 100%;
    min-height: 350px;
    max-height: 450px;
    overflow: hidden;
}

.service-detail-image img {
    object-fit: cover;
    transition: var(--transition);
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.1);
}

.service-number-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white-color);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.5);
    font-family: var(--font-secondary);
}

.service-detail-content {
    padding: 40px 45px;
}

.service-detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.05) 100%);
    border-radius: 18px;
    color: var(--primary-color);
    font-size: 2rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Additional Services */
.additional-service-card {
    padding: 35px 30px;
    background: var(--white-color);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.additional-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.2);
}

.additional-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 15px;
    color: var(--white-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.additional-service-card:hover .additional-service-icon {
    transform: rotateY(360deg);
}

/* Country Cards */
.country-card {
    padding: 25px 15px;
    background: var(--white-color);
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.3);
}

.country-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.country-card h6 {
    font-weight: 600;
    color: var(--dark-color);
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0 !important;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 50%, #0d6efd 100%);
    z-index: 0;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
}

.cta-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255, 255, 255, 0.03) 60px, rgba(255, 255, 255, 0.03) 120px);
    animation: ctaPattern 20s linear infinite;
}

@keyframes ctaPattern {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(120px) translateY(120px);
    }
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-weight: 600;
    font-size: 0.9rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
}

.cta-feature-item i {
    color: #90ee90;
    font-size: 1.2rem;
}

.cta-buttons-wrapper {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary {
    background: var(--white-color) !important;
    color: var(--primary-color) !important;
    border: none !important;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
    transition: var(--transition);
    transform: translate(-50%, -50%);
}

.cta-btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn-secondary {
    border: 2px solid var(--white-color) !important;
    color: var(--white-color) !important;
    font-weight: 600;
    transition: var(--transition);
    background: transparent !important;
}

.cta-btn-secondary:hover {
    background: var(--white-color) !important;
    color: var(--primary-color) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn-whatsapp {
    background: #25d366 !important;
    border: 2px solid #25d366 !important;
    color: var(--white-color) !important;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn-whatsapp:hover {
    background: #20bd5a !important;
    border-color: #20bd5a !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0c0e 0%, #1a1d20 100%);
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

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

.footer-world-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2000 1000"><defs><linearGradient id="lineGrad" x1="0%25" y1="0%25" x2="100%25" y2="0%25"><stop offset="0%25" style="stop-color:%230d6efd;stop-opacity:0.05"/><stop offset="50%25" style="stop-color:%230d6efd;stop-opacity:0.15"/><stop offset="100%25" style="stop-color:%230d6efd;stop-opacity:0.05"/></linearGradient></defs><g fill="none" stroke="url(%23lineGrad)" stroke-width="0.5"><path d="M100,200 Q200,180 300,200 T500,200 T700,220 T900,200 T1100,210 T1300,200 T1500,215 T1700,200 T1900,210"/><path d="M100,300 Q200,280 300,300 T500,300 T700,320 T900,300 T1100,310 T1300,300 T1500,315 T1700,300 T1900,310"/><path d="M100,400 Q200,380 300,400 T500,400 T700,420 T900,400 T1100,410 T1300,400 T1500,415 T1700,400 T1900,410"/><path d="M100,500 Q200,480 300,500 T500,500 T700,520 T900,500 T1100,510 T1300,500 T1500,515 T1700,500 T1900,510"/><path d="M100,600 Q200,580 300,600 T500,600 T700,620 T900,600 T1100,610 T1300,600 T1500,615 T1700,600 T1900,610"/><path d="M100,700 Q200,680 300,700 T500,700 T700,720 T900,700 T1100,710 T1300,700 T1500,715 T1700,700 T1900,710"/></g><g fill="%230d6efd" opacity="0.3"><circle cx="300" cy="250" r="4"><animate attributeName="r" values="3;5;3" dur="3s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.2;0.4;0.2" dur="3s" repeatCount="indefinite"/></circle><circle cx="550" cy="350" r="4"><animate attributeName="r" values="3;5;3" dur="3.5s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.2;0.4;0.2" dur="3.5s" repeatCount="indefinite"/></circle><circle cx="800" cy="280" r="4"><animate attributeName="r" values="3;5;3" dur="4s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.2;0.4;0.2" dur="4s" repeatCount="indefinite"/></circle><circle cx="1050" cy="400" r="4"><animate attributeName="r" values="3;5;3" dur="3.2s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.2;0.4;0.2" dur="3.2s" repeatCount="indefinite"/></circle><circle cx="1300" cy="320" r="4"><animate attributeName="r" values="3;5;3" dur="3.8s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.2;0.4;0.2" dur="3.8s" repeatCount="indefinite"/></circle><circle cx="1550" cy="450" r="4"><animate attributeName="r" values="3;5;3" dur="4.2s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.2;0.4;0.2" dur="4.2s" repeatCount="indefinite"/></circle></g><g stroke="%230d6efd" stroke-width="1" opacity="0.1"><line x1="300" y1="250" x2="550" y2="350"/><line x1="550" y1="350" x2="800" y2="280"/><line x1="800" y1="280" x2="1050" y2="400"/><line x1="1050" y1="400" x2="1300" y2="320"/><line x1="1300" y1="320" x2="1550" y2="450"/></g></svg>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    pointer-events: none;
    animation: mapFloat 20s ease-in-out infinite;
}

@keyframes mapFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(13, 110, 253, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(13, 110, 253, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.footer-links a {
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.footer-contact li {
    transition: var(--transition);
}

.footer-contact li:hover {
    transform: translateX(5px);
}

.footer-badges .badge {
    font-size: 0.75rem;
    padding: 6px 12px;
    font-weight: 500;
    background: rgba(13, 110, 253, 0.2) !important;
    border: 1px solid rgba(13, 110, 253, 0.3);
    transition: var(--transition);
}

.footer-badges .badge:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.social-icon-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color) !important;
    text-decoration: none;
    transition: var(--transition);
    margin-right: 10px;
    position: relative;
    overflow: hidden;
}

.social-icon-footer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translate(-50%, -50%);
}

.social-icon-footer:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon-footer i {
    position: relative;
    z-index: 1;
}

.social-icon-footer:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 20px rgba(13, 110, 253, 0.4);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px 10px 0 0;
    padding: 20px 30px !important;
    margin: 0 -15px;
}

.footer-payment-methods i {
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-payment-methods i:hover {
    transform: scale(1.2);
    filter: brightness(1.5);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: #0a58ca;
    transform: translateY(-5px);
}

/* Buttons */
.btn {
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 5px;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: #0a58ca;
    border-color: #0a58ca;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Badges */
.badge {
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 991px) {
    .top-bar {
        display: none !important;
    }
    
    .navbar-sticky-wrapper {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1050 !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .navbar {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    section, .container, .row, .col {
        overflow-x: hidden !important;
    }
    
    body {
        padding-top: 76px !important;
    }
    
    .hero-slide {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-slide h1 {
        font-size: 2.5rem;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    /* Mobile Language Selector */
    .navbar .dropdown-toggle span {
        display: none !important;
    }
    
    .navbar .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: 1px solid #e9ecef;
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .top-bar {
        display: none !important;
    }
    
    .navbar-sticky-wrapper {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1050 !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .navbar {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    section, .container, .row, .col {
        overflow-x: hidden !important;
    }
    
    body {
        padding-top: 70px !important;
    }
    
    .hero-slide h1 {
        font-size: 2rem;
    }
    
    .hero-slide .lead {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .stat-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .stat-icon-wrapper i {
        font-size: 1.8rem;
    }
    
    .stat-item {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .stats-section {
        padding: 60px 0 !important;
    }
    
    .cta-buttons-wrapper {
        margin-top: 30px;
    }
    
    .cta-features {
        gap: 15px;
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 18px 25px !important;
    }
    
    .service-image-wrapper {
        height: 220px;
    }
    
    .service-number {
        font-size: 3rem;
    }
    
    .why-item-modern {
        padding: 30px 25px;
    }
    
    .why-number {
        font-size: 2.5rem;
    }
    
    .about-image-small img {
        height: 250px;
    }
    
    .service-detail-content {
        padding: 40px 30px;
    }
    
    .service-detail-image {
        min-height: 280px;
        max-height: 350px;
    }
    
    .contact-form-wrapper {
        padding: 35px 30px;
    }
    
    .contact-info-section {
        margin-top: -60px;
    }
    
    .map-container iframe {
        height: 300px !important;
    }
    
    .navbar-logo {
        height: 40px;
        max-width: 100%;
        object-fit: contain;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats .d-flex {
        flex-direction: row !important;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-stat-item {
        padding: 10px 15px;
        flex: 1;
        min-width: 80px;
        max-width: 120px;
        text-align: center;
    }
    
    .certificate-card {
        padding: 30px 25px;
    }
    
    .certificate-badge .badge {
        font-size: 0.75rem;
        padding: 8px 12px;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .top-bar {
        display: none !important;
    }
    
    .navbar-sticky-wrapper {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1050 !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }
    
    .navbar {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    section, .container, .row, .col {
        overflow-x: hidden !important;
    }
    
    body {
        padding-top: 65px !important;
    }
    
    .top-bar-info {
        flex-direction: column;
        gap: 10px !important;
        text-align: center;
    }
    
    .top-bar-item {
        width: 100%;
        text-align: center;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
    
    .feature-card,
    .service-card,
    .why-item {
        margin-bottom: 20px;
    }
    
    .footer-badges {
        text-align: center;
    }
    
    .social-icon-footer {
        width: 36px;
        height: 36px;
        margin: 5px;
    }
    
    .footer-payment-methods {
        margin-top: 15px;
    }
    
    .footer-payment-methods i {
        font-size: 1.3rem;
    }
    
    .footer-bottom {
        padding: 15px 20px !important;
        margin: 0;
    }
    
    .footer-bottom .row {
        gap: 15px;
    }
    
    .stat-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .stat-item h2 {
        font-size: 2.5rem;
    }
    
    .stat-item p {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .cta-section {
        padding: 60px 0 !important;
    }
    
    .cta-buttons-wrapper {
        padding: 20px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-feature-item {
        font-size: 0.9rem;
    }
    
    .cta-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .section-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .service-image-wrapper {
        height: 200px;
    }
    
    .service-number {
        font-size: 2.5rem;
    }
    
    .service-icon-modern {
        width: 50px;
        height: 50px;
    }
    
    .service-icon-modern i {
        font-size: 1.2rem;
    }
    
    .why-item-modern {
        padding: 25px 20px;
    }
    
    .why-number {
        font-size: 2rem;
        top: 15px;
        right: 15px;
    }
    
    .why-icon-modern {
        width: 60px;
        height: 60px;
    }
    
    .why-icon-modern i {
        font-size: 1.8rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        justify-content: flex-start !important;
        padding-left: 80px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        justify-content: flex-start !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        order: 2;
        margin: 0;
        max-width: 100%;
    }
    
    .timeline-item:nth-child(odd) .timeline-badge,
    .timeline-item:nth-child(even) .timeline-badge {
        position: absolute;
        left: 0;
        order: 1;
        margin: 0;
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .timeline-content::before {
        left: -10px !important;
    }
    
    .about-images-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-image-small {
        grid-column: 1;
    }
    
    .about-badge-float {
        padding: 12px;
        bottom: 10px;
        right: 10px;
        min-width: 85px;
    }
    
    .about-badge-float i {
        font-size: 1.5rem !important;
    }
    
    .about-badge-float small {
        font-size: 0.75rem;
    }
    
    .about-image-small img {
        height: 220px;
    }
    
    .hero-stat-item {
        font-size: 0.8rem;
        padding: 8px 12px;
        flex: 1;
        min-width: 70px;
        max-width: 100px;
        text-align: center;
    }
    
    .hero-stat-item h3 {
        font-size: 1.2rem;
    }
    
    .hero-stat-item small {
        font-size: 0.7rem;
    }
    
    .page-hero {
        min-height: 45vh;
    }
    
    .min-vh-50 {
        min-height: 45vh;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats .d-flex {
        flex-direction: row !important;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .value-card {
        min-height: 200px;
    }
    
    .service-detail-image {
        min-height: 220px;
        max-height: 280px;
    }
    
    .service-detail-content {
        padding: 30px 20px;
    }
    
    .service-features-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .service-number-badge {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        top: 15px;
        left: 15px;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
    }
    
    .quick-btn {
        padding: 15px;
    }
    
    .contact-info-section {
        margin-top: -50px;
    }
    
    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .map-container iframe {
        height: 250px !important;
    }
    
    .navbar-logo {
        height: 35px;
        max-width: 100%;
        object-fit: contain;
    }
    
    .certificate-card {
        padding: 25px 20px;
    }
    
    .certificate-badge .badge {
        font-size: 0.7rem;
        padding: 6px 10px;
        line-height: 1.2;
    }
}

/* Contact Info Cards */
.contact-info-section {
    margin-top: -80px;
}

.contact-info-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(13, 110, 253, 0.2);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white-color);
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    transform: rotateY(360deg);
}

.contact-link {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white-color);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
    outline: none;
}

select.form-control {
    cursor: pointer;
}

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

/* Office Cards */
.office-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.office-card:hover {
    box-shadow: 0 15px 50px rgba(13, 110, 253, 0.15);
    transform: translateY(-5px);
}

.office-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.office-flag {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white-color);
}

.office-card-body {
    padding: 25px;
}

.office-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.office-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.office-detail i {
    width: 40px;
    height: 40px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.office-detail strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.office-detail p {
    color: var(--text-color);
}

/* Quick Contact Buttons */
.quick-contact-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.quick-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 15px;
    border-radius: 15px;
    text-decoration: none;
    color: var(--white-color);
    font-weight: 600;
    transition: var(--transition);
}

.quick-btn i {
    font-size: 1.8rem;
}

.quick-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.quick-btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.quick-btn-phone {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

.quick-btn-phone:hover {
    background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
}

.quick-btn-email {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.quick-btn-email:hover {
    background: linear-gradient(135deg, #495057 0%, #343a40 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(108, 117, 125, 0.3);
}

/* Map Cards */
.map-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.map-card:hover {
    box-shadow: 0 20px 60px rgba(13, 110, 253, 0.15);
    transform: translateY(-5px);
}

.map-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 25px;
    display: flex;
    align-items: center;
}

.map-card-header h4 {
    font-weight: 700;
    color: var(--dark-color);
}

.map-container {
    padding: 20px;
    background: var(--white-color);
}

.map-card-footer {
    padding: 20px 25px;
    background: var(--white-color);
    border-top: 1px solid #e9ecef;
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark-color);
    background-color: var(--white-color);
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: none;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.accordion-button:not(.collapsed)::after {
    content: '\f106';
}

.accordion-body {
    padding: 25px;
    color: var(--text-color);
    line-height: 1.8;
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0a58ca;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .scroll-top-btn,
    .hero-slider {
        display: none;
    }
}

