/* Ana Sayfa Özel Stilleri */

/* Hero Background */
.hero-bg {
    background: linear-gradient(rgba(17, 24, 39, 0.85), rgba(245, 158, 11, 0.7)), 
                url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920&h=1080&fit=crop&crop=center');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Hero Section Styles */
.hero-section {
    z-index: 0;
    margin-top: 0;
}

.hero-section h1, .hero-section p {
    text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 1px 2px rgba(0,0,0,0.5);
    font-weight: 700;
}

.hero-section a.inline-block {
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.hero-section a.inline-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Biz Kimiz Section */
.shadow-xl {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.signature-name {
    font-style: italic;
    font-weight: 400;
}

section.py-0 .container {
    max-width: 100%;
    padding: 0 5%;
}

@media (min-width: 1024px) {
    section.py-0 .container {
        padding: 0 10%;
    }
}

.logo h1 {
    letter-spacing: 0.5px;
}

nav a {
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #f59e0b;
    left: 0;
    bottom: -4px;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Dil Seçici Dropdown */
.lang-dropdown {
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-selector.active .lang-dropdown {
    transform: translateY(0);
}

/* Animasyonlar */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hover Efektleri */
.service-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: scale(1.02);
    transition: all 0.3s ease;
}

/* RTL Desteği */
body.rtl {
    direction: rtl;
}

body.rtl .language-selector {
    margin-left: 0;
    margin-right: 1rem;
}

/* Custom Button */
.btn-primary {
    background-color: #f59e0b;
    color: #1f2937;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Mobile Menu Animations */
/* #mobileNav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

#mobileNav.open {
    max-height: 300px;
    padding-top: 1rem;
    padding-bottom: 1rem;
} */

/* Counter Section Styles */
#counter-section {
    z-index: 0;
}

.counter-item {
    position: relative;
    padding: 20px;
    transition: all 0.4s ease;
}

.counter-item:hover {
    transform: translateY(-10px);
}

.counter-number {
    margin-bottom: 15px;
    position: relative;
    display: inline-flex;
    align-items: baseline;
}

.counter-number span:first-child {
    font-size: 3.75rem;
    line-height: 1;
    display: inline-block;
    letter-spacing: -1px;
}

/* Add separator lines between counters on desktop */
@media (min-width: 1024px) {
    .counter-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 20%;
        right: 0;
        height: 60%;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.2);
    }
}

/* Footer Styles */
footer {
    position: relative;
}

footer h3 {
    position: relative;
    display: inline-block;
}

footer h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background-color: #f59e0b;
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background-color: #f59e0b;
    color: #111827 !important;
    transform: translateY(-3px);
}

/* Latest News items in footer */
footer .flex img {
    transition: all 0.3s ease;
    border-radius: 3px;
}

footer .flex:hover img {
    transform: scale(1.05);
}

/* Newsletter form */
footer input[type="email"] {
    transition: all 0.3s ease;
}

footer input[type="email"]:focus {
    border-color: #f59e0b;
}

footer button[type="submit"] {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

footer button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Team Card Styles */
.team-card {
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 540px;
}

.team-card img {
    border-radius: 6px;
}

.team-card .bg-gradient-to-t {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 0 0 6px 6px;
}

/* Hover effect */
.team-card .absolute.inset-0 {
    border-radius: 6px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .bg-black\/80 {
    background-color: rgba(0, 0, 0, 0.85);
}

/* Social icons hover effect */
.team-card .bg-gray-700 {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-card .bg-gray-700:hover {
    transform: translateY(-3px);
}

/* Image zoom effect */
.team-card:hover img {
    transform: scale(1.1);
}

#about {
    z-index: 0;
}
