/* Modern HR Website Styles - Exact Design from Image with Elegant Animations */
:root {
    --primary-color: #23b6e3;
    --primary-dark: #1e9bc7;
    --secondary-color: #6c757d;
    --accent-color: #dc3545;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --teal: #23b6e3;
    --pink: #e83e8c;
    --purple: #6f42c1;
    --blue: #007bff;
    --light-blue: #e3f2fd;
    --light-yellow: #fff8e1;
    --light-pink: #fce4ec;
    --light-purple: #f3e5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Header/Navigation - Fixed Visibility Issues */
.main-header {
    background: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1050;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-height: 80px;
    display: flex;
    align-items: center;
}

.navbar {
    padding: 0;
    background: transparent;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--teal);
    text-decoration: none;
    z-index: 1060;
    overflow: hidden;
    height: 70px;
}

.navbar-brand img {
    height: 250px;
    width: auto;
    margin-right: 0.5rem;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border-radius: 0.375rem;
    transition: box-shadow 0.15s ease-in-out;
    z-index: 1060;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(32, 201, 151, 0.25);
    outline: 0;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2832, 201, 151, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
}

.navbar-nav {
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.nav-item {
    list-style: none;
    display: block;
}

.nav-link {
    color: var(--gray-700) !important;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    display: block;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--teal) !important;
}

.nav-link.active {
    color: var(--teal) !important;
}

.btn-kurumsal {
    background: var(--teal);
    border: none;
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    margin-left: 1rem;
}

.btn-kurumsal:hover {
    background: var(--primary-dark);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section - Exact Design from Image with Elegant Animations */
.hero-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: var(--white);
    position: relative;
    overflow: hidden;
    transform: none !important; /* Scroll sırasında hareket etmesini engelle */
    will-change: auto !important; /* Transform optimizasyonunu devre dışı bırak */
}

/* Hero section'ın scroll sırasında transform almasını engelle */
.hero-section[style*="transform"] {
    transform: none !important;
}

/* AOS animasyonlarının hero section'ı etkilememesini sağla */
.hero-section[data-aos] {
    transform: none !important;
}

.hero-section[data-aos].aos-animate {
    transform: none !important;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(32, 201, 151, 0.1) 0%, rgba(32, 201, 151, 0.05) 100%);
    border-radius: 50%;
    z-index: 1;
    animation: backgroundFloat 8s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.1;
    }
    50% { 
        transform: translateY(-20px) scale(1.05);
        opacity: 0.15;
    }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--gray-800);
    opacity: 0;
    transform: translateY(30px);
    animation: contentFadeIn 1.2s ease-out 0.5s forwards;
}

@keyframes contentFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--gray-800);
    opacity: 0;
    transform: translateY(20px);
    animation: titleSlideIn 1s ease-out 0.8s forwards;
    letter-spacing: -0.02em;
}

@keyframes titleSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray-600);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: descriptionFadeIn 1s ease-out 1.2s forwards;
    font-weight: 400;
}

@keyframes descriptionFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: buttonsFadeIn 1s ease-out 1.5s forwards;
}

@keyframes buttonsFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    border: 2px solid var(--teal);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

.btn-outline {
    background: var(--white);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

/* Hero Visual - Exact Design from Image with Elegant Animations */
.hero-visual {
    position: relative;
    height: 500px;
    opacity: 0;
    transform: translateX(50px);
    animation: visualSlideIn 1.2s ease-out 1s forwards;
}

@keyframes visualSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-item {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8) translateY(30px);
}

.card-top {
    top: 10%;
    left: 5%;
    background: var(--light-blue);
    border-color: var(--blue);
    max-width: 280px;
    animation: cardTopFloat 1s ease-out 2s forwards, cardFloat 6s ease-in-out 3s infinite;
}

@keyframes cardTopFloat {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes cardFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    25% { 
        transform: translateY(-8px) rotate(1deg);
    }
    50% { 
        transform: translateY(-15px) rotate(0deg);
    }
    75% { 
        transform: translateY(-8px) rotate(-1deg);
    }
}

.card-bottom {
    bottom: 10%;
    right: 5%;
    background: var(--light-yellow);
    border-color: var(--warning-color);
    max-width: 280px;
    animation: cardBottomFloat 1s ease-out 2.5s forwards, cardFloat 6s ease-in-out 3.5s infinite;
}

@keyframes cardBottomFloat {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.card-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    animation: avatarPulse 4s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }
}

.card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success-color);
    font-weight: 600;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 0.9rem;
    opacity: 0;
    transform: scale(0.8);
    animation: badgePopIn 0.6s ease-out 3s forwards, badgeGlow 4s ease-in-out 4s infinite;
}

@keyframes badgePopIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    50% { 
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
    }
}

.card-badge i {
    color: var(--success-color);
    font-size: 1rem;
    animation: checkmarkBounce 2s ease-in-out infinite;
}

@keyframes checkmarkBounce {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.1);
    }
}

/* Connection Lines - Dotted lines like in image with elegant animations */
.connection-line {
    position: absolute;
    background: repeating-linear-gradient(
        to right,
        var(--gray-400) 0,
        var(--gray-400) 4px,
        transparent 4px,
        transparent 8px
    );
    opacity: 0;
    animation: lineDraw 1s ease-out 3.5s forwards, lineFlow 3s ease-in-out 5s infinite;
}

@keyframes lineDraw {
    to {
        opacity: 0.6;
    }
}

@keyframes lineFlow {
    0%, 100% { 
        opacity: 0.6;
        transform: scaleX(1);
    }
    50% { 
        opacity: 0.8;
        transform: scaleX(1.1);
    }
}

.line-1 {
    top: 25%;
    left: 25%;
    width: 60px;
    height: 2px;
    transform: rotate(45deg);
    animation-delay: 3.5s, 5s;
}

.line-2 {
    top: 25%;
    left: 35%;
    width: 60px;
    height: 2px;
    transform: rotate(-45deg);
    animation-delay: 3.7s, 5.2s;
}

.line-3 {
    bottom: 25%;
    left: 25%;
    width: 60px;
    height: 2px;
    transform: rotate(-45deg);
    animation-delay: 3.9s, 5.4s;
}

.line-4 {
    bottom: 25%;
    left: 35%;
    width: 60px;
    height: 2px;
    transform: rotate(45deg);
    animation-delay: 4.1s, 5.6s;
}

.line-5 {
    top: 50%;
    left: 50%;
    width: 40px;
    height: 2px;
    transform: translateX(-50%);
    animation-delay: 4.3s, 5.8s;
}

.icon-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid var(--gray-200);
    opacity: 0;
    transform: scale(0) rotate(180deg);
    animation: iconPopIn 0.8s ease-out 4s forwards, iconFloat 5s ease-in-out 5s infinite;
}

@keyframes iconPopIn {
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    25% { 
        transform: translateY(-5px) rotate(2deg);
    }
    50% { 
        transform: translateY(-10px) rotate(0deg);
    }
    75% { 
        transform: translateY(-5px) rotate(-2deg);
    }
}

.icon-briefcase {
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--light-purple);
    color: var(--purple);
    border-color: var(--purple);
    animation-delay: 4s, 5s;
}

.icon-document {
    bottom: 35%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--light-pink);
    color: var(--pink);
    border-color: var(--pink);
    animation-delay: 4.5s, 5.5s;
}

/* References Slider Section - Right after Hero */
.references-slider-section {
    padding: 4rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.references-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.005em;
}

.references-slider-container {
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.references-track {
    display: flex;
    align-items: center;
    animation: referencesSlide 30s linear infinite;
    width: calc(200% + 2rem);
}

@keyframes referencesSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.reference-item {
    flex: 0 0 auto;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.reference-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.reference-logo:hover {
    transform: translateY(-5px);
}

.logo-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.logo-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    text-align: center;
}

/* Logo Icons - Custom SVG-like designs */
.lightning-bolt {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    clip-path: polygon(50% 0%, 30% 40%, 50% 40%, 20% 100%, 50% 60%, 70% 60%, 50% 100%);
}

.gear-core {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #48dbfb, #0abde3);
    border-radius: 50%;
    position: relative;
}

.gear-core::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.gear-core::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.flow-network {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #ff9ff3, #f368e0);
    border-radius: 6px;
    position: relative;
}

.flow-network::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
}

.flow-network::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 20%;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
}

.bridge-dots {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #1dd1a1, #10ac84);
    border-radius: 4px;
    position: relative;
}

.bridge-dots::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 15%;
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
}

.bridge-dots::after {
    content: '';
    position: absolute;
    top: 25%;
    right: 15%;
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
}

.wave-ripple {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #ff9f43, #ee5a24);
    border-radius: 50%;
    position: relative;
}

.wave-ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border: 2px solid var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
    background: var(--white);
    scroll-margin-top: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--gray-800);
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* About Section - New Professional Design */
.about-section {
    background: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(35, 182, 227, 0.05) 0%, rgba(35, 182, 227, 0.02) 100%);
    border-radius: 50%;
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    padding-right: 3rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--teal) 0%, var(--primary-dark) 100%);
    border-radius: 0 2px 2px 0;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--teal);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(35, 182, 227, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(35, 182, 227, 0.4);
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    letter-spacing: -0.005em;
}

.feature-text p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
}

.about-visual {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.stat-item {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--primary-dark) 100%);
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.3;
}

/* Features Section */
.features-section {
    background: var(--white);
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-card-icon {
    width: 70px;
    height: 70px;
    background: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
    letter-spacing: -0.005em;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-weight: 400;
}

.feature-card-footer {
    margin-top: auto;
}

/* Pricing Section */
.pricing-section {
    background: var(--gray-100);
}

.pricing-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--teal);
    box-shadow: 0 8px 25px rgba(32, 201, 151, 0.2);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-600);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--teal);
}

.period {
    font-size: 1rem;
    color: var(--gray-600);
}

.pricing-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-600);
}

.pricing-features li i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.pricing-footer {
    margin-top: auto;
}

/* Paydaşlar Slider Stilleri */
.references-track {
    display: flex;
    align-items: center;
    gap: 80px; 
}



/* Updates Section */
.updates-section {
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--teal);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    text-align: right;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--teal);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 1rem;
}

.timeline-date {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 0.5rem;
    letter-spacing: -0.005em;
}

.timeline-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
    letter-spacing: -0.005em;
}

.timeline-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 400;
}

.timeline-icon {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.timeline-item:nth-child(even) .timeline-icon {
    right: auto;
    left: 20px;
}

/* References Section */
.references-section {
    background: var(--gray-100);
}

.references-slider {
    margin-top: 3rem;
}

.slider-container {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    animation: slide 20s linear infinite;
    width: calc(200% + 2rem);
}

.slide {
    flex: 0 0 auto;
    margin: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Contact Section */
.contact-section {
    background: var(--white);
}

.contact-info-grid {
    margin-top: 3rem;
}

.contact-box {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    border: 1px solid var(--gray-200);
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.contact-box h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
    letter-spacing: -0.005em;
}

.contact-box p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Services Section - Right after References */
.services-section {
    padding: 5rem 0;
    background: var(--white);
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.services-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 4rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    height: 320px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-card-green {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f0 100%);
    border-color: #d4edda;
}

.service-card-purple {
    background: linear-gradient(135deg, #f3e5f5 0%, #f8f0fc 100%);
    border-color: #e1bee7;
}

.service-card-yellow {
    background: linear-gradient(135deg, #fff8e1 0%, #fffde7 100%);
    border-color: #ffe082;
}

.service-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-weight: 400;
}

.service-link {
    color: var(--gray-800);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    color: var(--teal);
    transform: translateX(5px);
}

.service-icon {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Service Icons - Custom designs without square containers */
.talent-sourcing-icon {
    width: 50px;
    height: 50px;
    position: relative;
}

.talent-sourcing-icon::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    width: 18px;
    height: 18px;
    background: #4caf50;
    border-radius: 50%;
    transform: translateX(-50%);
}

.talent-sourcing-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    width: 12px;
    height: 12px;
    background: #66bb6a;
    border-radius: 50%;
    transform: translateY(-50%);
}

.employer-branding-icon {
    width: 50px;
    height: 50px;
    position: relative;
}

.employer-branding-icon::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 25px;
    height: 30px;
    background: #9c27b0;
    border-radius: 4px;
}

.employer-branding-icon::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 55%;
    width: 12px;
    height: 15px;
    background: #ba68c8;
    border-radius: 50%;
}

.hr-consulting-icon {
    width: 50px;
    height: 50px;
    position: relative;
}

.hr-consulting-icon::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    width: 20px;
    height: 12px;
    background: #ff9800;
    border-radius: 8px;
    transform: translateX(-50%);
}

.hr-consulting-icon::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 50%;
    width: 15px;
    height: 15px;
    background: #ffb74d;
    border-radius: 50%;
    transform: translateX(-50%);
}

/* Responsive adjustments for services */
@media (max-width: 991.98px) {
    .services-title {
        font-size: 2rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .service-card {
        padding: 2rem;
        margin-bottom: 1rem;
        height: 280px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .talent-sourcing-icon,
    .employer-branding-icon,
    .hr-consulting-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767.98px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .services-title {
        font-size: 1.75rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
        height: 250px;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
    }
    
    .talent-sourcing-icon,
    .employer-branding-icon,
    .hr-consulting-icon {
        width: 35px;
        height: 35px;
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .navbar-nav {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--gray-200);
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        padding: 1rem 0;
        display: none;
    }
    
    .navbar-collapse.show {
        display: block;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
    }
    
    .btn-kurumsal {
        margin: 1rem 2rem;
        width: calc(100% - 4rem);
        justify-content: center;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        text-align: left;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    /* Mobile hero visual adjustments */
    .hero-visual {
        height: 400px;
        margin-top: 2rem;
    }
    
    .visual-container {
        display: block;
    }
    
    .card-item {
        position: relative;
        margin-bottom: 1rem;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .card-top {
        top: 0;
        left: 0;
        right: 0;
    }
    
    .card-bottom {
        bottom: 0;
        left: 0;
        right: 0;
    }
    
    .connection-line {
        display: none;
    }
    
    .icon-item {
        display: none;
    }
    
    /* Mobile references slider */
    .references-slider-section {
        padding: 2rem 0;
    }
    
    .references-title {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .reference-item {
        min-width: 150px;
        margin: 0 1rem;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .logo-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .contact-box {
        margin-bottom: 1rem;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .card-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .card-avatar {
        width: 50px;
        height: 50px;
    }
    
    .card-badge {
        font-size: 0.8rem;
        padding: 0.25rem 0.75rem;
    }
    
    /* Mobile references slider */
    .reference-item {
        min-width: 120px;
        margin: 0 0.5rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 0.75rem;
    }
}

/* Responsive adjustments for about section */
@media (max-width: 991.98px) {
    .about-section {
        padding: 4rem 0;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
    
    .stats-grid {
        max-width: 400px;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-description {
        text-align: center;
    }
    
    .feature-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .feature-text h4 {
        font-size: 1rem;
    }
    
    .feature-text p {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .stat-item {
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

/* AOS Animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.footer-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    height: 80px;
    overflow: hidden;
    background: #ffffffbd;
    width: 220px;
    border-radius: 15px;
}

.footer-logo-img {
    width: 220px;
    height: auto;
    object-fit: contain;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.01em;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 400;
}



.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: -0.005em;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    font-weight: 400;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
    padding-left: 15px;
}

.footer-link:hover::before {
    opacity: 1;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
    font-weight: 400;
}

.contact-value {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.social-media h5 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-link:hover::before {
    background: rgba(255, 255, 255, 0.3);
}

.social-link i {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.newsletter-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-section h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.005em;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-weight: 400;
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 1rem 1.5rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn {
    background: var(--white);
    color: var(--teal);
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 3rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-bottom-link:hover {
    color: var(--white);
}

/* Responsive Footer */
@media (max-width: 991.98px) {
    .modern-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-stats {
        justify-content: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .modern-footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-section {
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Demo Request Modal Styles */
#demoRequestModal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

#demoRequestModal .modal-header {
    background: linear-gradient(135deg, var(--teal) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-bottom: none;
    padding: 1.5rem 2rem;
}

#demoRequestModal .modal-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0;
}

#demoRequestModal .btn-close {
    filter: invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#demoRequestModal .btn-close:hover {
    opacity: 1;
}

#demoRequestModal .modal-body {
    padding: 2rem;
}

.modal-description {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

#demoRequestModal .form-label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

#demoRequestModal .form-control {
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

#demoRequestModal .form-control:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 0.2rem rgba(35, 182, 227, 0.25);
    outline: none;
}

#demoRequestModal .form-control.is-invalid {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

#demoRequestModal .form-control::placeholder {
    color: var(--gray-400);
}

#demoRequestModal textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

#demoRequestModal .modal-footer {
    border-top: 1px solid var(--gray-200);
    padding: 1.5rem 2rem;
    background: var(--gray-50);
}

#demoRequestModal .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
}

#demoRequestModal .btn-primary {
    background: linear-gradient(135deg, var(--teal) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

#demoRequestModal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(35, 182, 227, 0.3);
}

#demoRequestModal .btn-primary:disabled {
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}

#demoRequestModal .btn-secondary {
    background: var(--gray-200);
    color: var(--gray-700);
}

#demoRequestModal .btn-secondary:hover {
    background: var(--gray-300);
    color: var(--gray-800);
}

/* Modal animation */
#demoRequestModal .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

#demoRequestModal.show .modal-dialog {
    transform: scale(1);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    #demoRequestModal .modal-header {
        padding: 1rem 1.5rem;
    }
    
    #demoRequestModal .modal-title {
        font-size: 1.1rem;
    }
    
    #demoRequestModal .modal-body {
        padding: 1.5rem;
    }
    
    #demoRequestModal .modal-footer {
        padding: 1rem 1.5rem;
    }
    
    #demoRequestModal .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Notification styles */
.alert {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: var(--white);
}

.alert-danger {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
    color: var(--white);
}

.alert-info {
    background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
    color: var(--white);
}
