/* ============================================
   HYPE ORGANİZASYON - Custom Styles
   Renk Paleti: Turuncu, Siyah, Açık Mavi
   ============================================ */

:root {
    --primary-orange: #FF6B35;
    --dark-orange: #E55A2B;
    --light-orange: #FF8C5A;
    --primary-black: #1A1A1A;
    --dark-gray: #2C2C2C;
    --light-blue: #4A90E2;
    --light-blue-hover: #357ABD;
    --text-gray: #6C757D;
    --bg-light: #F8F9FA;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-black);
    line-height: 1.6;
    padding-top: 76px; /* Navbar yüksekliği için */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.text-orange {
    color: var(--primary-orange) !important;
}

.bg-orange {
    background-color: var(--primary-orange) !important;
}

.bg-light-blue {
    background-color: var(--light-blue) !important;
}

/* Navbar Styles */
.navbar {
    background-color: var(--primary-black) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.2rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.navbar-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 991px) {
    .navbar-logo {
        height: 35px;
    }
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Navbar Appointment Button */
.btn-navbar-appointment {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-navbar-appointment:hover {
    background: linear-gradient(135deg, var(--dark-orange), var(--primary-orange));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    color: white !important;
}

.btn-navbar-appointment:active {
    transform: translateY(0);
}

.btn-navbar-appointment i {
    font-size: 1rem;
}

/* Navbar Responsive for Appointment Button */
@media (max-width: 991px) {
    .btn-navbar-appointment {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .navbar-nav {
        padding-bottom: 1rem;
    }
}

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

/* Hero Section - Animasyonlu Üçgen İkonlar */
.hero-decorative-icons {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.hero-decorative-icons-left {
    top: 80px;
    left: 50px;
}

.hero-decorative-icons-right {
    top: 80px;
    right: 50px;
}

.hero-icon {
    position: absolute;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.hero-icon:hover {
    opacity: 1;
}

.hero-icon-1 {
    top: 0;
    left: 0;
    animation: float-up-down-1 3s ease-in-out infinite;
}

.hero-icon-2 {
    top: 40px;
    left: 30px;
    animation: float-up-down-2 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.hero-icon-3 {
    top: 80px;
    left: 60px;
    animation: float-up-down-3 4s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-icon-4 {
    top: 120px;
    left: 90px;
    animation: float-up-down-4 3.8s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Sağ Taraf İkonlar */
.hero-icon-right-1 {
    top: 0;
    right: 0;
    animation: float-up-down-right-1 3.2s ease-in-out infinite;
    animation-delay: 0.3s;
}

.hero-icon-right-2 {
    top: 45px;
    right: 35px;
    animation: float-up-down-right-2 3.7s ease-in-out infinite;
    animation-delay: 0.8s;
}

.hero-icon-right-3 {
    top: 85px;
    right: 65px;
    animation: float-up-down-right-3 4.2s ease-in-out infinite;
    animation-delay: 1.3s;
}

.hero-icon-right-4 {
    top: 125px;
    right: 95px;
    animation: float-up-down-right-4 3.9s ease-in-out infinite;
    animation-delay: 1.8s;
}

@keyframes float-up-down-right-1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-18px) rotate(-5deg);
    }
}

@keyframes float-up-down-right-2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-16px) rotate(4deg);
    }
}

@keyframes float-up-down-right-3 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-14px) rotate(-3deg);
    }
}

@keyframes float-up-down-right-4 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes float-up-down-1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes float-up-down-2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

@keyframes float-up-down-3 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-18px) rotate(3deg);
    }
}

@keyframes float-up-down-4 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(-3deg);
    }
}

/* Responsive - Hero İkonlar */
@media (max-width: 768px) {
    .hero-decorative-icons-left {
        top: 40px;
        left: 20px;
    }
    
    .hero-decorative-icons-right {
        top: 40px;
        right: 20px;
    }
    
    .hero-icon-1 {
        top: 0;
        left: 0;
    }
    
    .hero-icon-2 {
        top: 30px;
        left: 25px;
    }
    
    .hero-icon-3 {
        top: 60px;
        left: 50px;
    }
    
    .hero-icon-4 {
        top: 90px;
        left: 75px;
    }
    
    .hero-icon-right-1 {
        top: 0;
        right: 0;
    }
    
    .hero-icon-right-2 {
        top: 30px;
        right: 25px;
    }
    
    .hero-icon-right-3 {
        top: 60px;
        right: 50px;
    }
    
    .hero-icon-right-4 {
        top: 90px;
        right: 75px;
    }
    
    .hero-icon svg {
        width: 18px !important;
        height: 18px !important;
    }
    
    .hero-icon-2 svg,
    .hero-icon-right-1 svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    .hero-icon-3 svg,
    .hero-icon-right-2 svg {
        width: 14px !important;
        height: 14px !important;
    }
    
    .hero-icon-4 svg,
    .hero-icon-right-3 svg,
    .hero-icon-right-4 svg {
        width: 12px !important;
        height: 12px !important;
    }
}

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

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1.5rem;
}

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-buttons .btn-orange,
.hero-buttons .btn-outline-orange {
    width: auto;
}

.hero-image-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Buttons */
.btn-orange {
    background-color: var(--primary-orange);
    border: none;
    color: white;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.btn-orange:hover {
    background-color: var(--dark-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-outline-orange {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    background: transparent;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
}

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

.btn-light-blue {
    background-color: var(--light-blue);
    border: none;
    color: white;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-light-blue:hover {
    background-color: var(--light-blue-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-black);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--light-blue));
    margin: 0 auto 3rem;
    border-radius: 2px;
}

/* Card Styles */
.service-card {
    background: white;
    border-radius: 10px;
    padding: 0;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

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

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

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

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

.service-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.service-card h4 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

/* Enhanced Service Card Styles */
.service-card-enhanced {
    background: white;
    border-radius: 15px;
    padding: 0;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.service-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-orange);
}

.service-card-enhanced .service-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.service-card-enhanced .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card-enhanced:hover .service-image {
    transform: scale(1.15);
}

.service-icon-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.service-card-enhanced:hover .service-icon-badge {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.service-icon-badge i {
    font-size: 1.8rem;
    color: white;
}

.service-card-enhanced .service-card-content {
    padding: 1.5rem;
    text-align: center;
}

.service-card-enhanced h4 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-card-enhanced p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .service-card-enhanced .service-image-wrapper {
        height: 220px;
    }
    
    .service-icon-badge {
        width: 50px;
        height: 50px;
        top: 10px;
        right: 10px;
    }
    
    .service-icon-badge i {
        font-size: 1.5rem;
    }
    
    .service-card-enhanced .service-card-content {
        padding: 1.5rem 1rem;
    }
    
    .service-card-enhanced h4 {
        font-size: 1.2rem;
    }
    
    .service-card-enhanced p {
        font-size: 0.9rem;
    }
}

/* Vision Mission Cards */
.vision-mission-card {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    color: white;
    border-radius: 15px;
    padding: 3rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.vision-mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.vision-mission-card h3 {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.vision-mission-card p {
    position: relative;
    z-index: 1;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* About Images */
.about-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
}

.about-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.about-image {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 15px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Goals List */
.goals-list {
    list-style: none;
    padding: 0;
}

.goals-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.goals-list li:last-child {
    border-bottom: none;
}

.goals-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.goals-list li:hover {
    padding-left: 3rem;
    color: var(--primary-orange);
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

/* İletişim Bilgileri Kartı */
.contact-info-card {
    background: white;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-title {
    color: var(--primary-orange);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.contact-info-list {
    flex: 1;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-info-item:last-of-type {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info-text {
    color: var(--text-gray);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-text:last-child {
    margin-bottom: 0;
}

.contact-info-text a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--primary-orange);
}

.contact-info-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    margin: 2rem 0;
}

.contact-info-social {
    margin-top: auto;
}

.contact-info-social-title {
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-social-links {
    display: flex;
    gap: 1rem;
}

.contact-social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.contact-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.5);
    color: white;
}

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

.contact-social-link:hover i {
    transform: scale(1.1);
}

/* Responsive - İletişim Bilgileri */
@media (max-width: 991px) {
    .contact-info-card {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-info-card {
        padding: 2rem;
    }
    
    .contact-info-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info-item {
        margin-bottom: 1.5rem;
    }
    
    .contact-info-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-info-icon i {
        font-size: 1.25rem;
    }
    
    .contact-social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Footer Modern Styles */
.footer-modern {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

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

.footer-top {
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-brand-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 50px;
    }
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.social-icon.instagram:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
}

.social-icon.linkedin:hover {
    background: #0077b5;
    color: white;
    box-shadow: 0 5px 20px rgba(0, 119, 181, 0.4);
}

.social-icon.facebook:hover {
    background: #1877f2;
    color: white;
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
}

.footer-title {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--light-blue));
    border-radius: 2px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-menu a i {
    font-size: 0.7rem;
    color: var(--primary-orange);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-menu a:hover i {
    opacity: 1;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.contact-icon i {
    color: white;
    font-size: 1.1rem;
}

.contact-info {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.contact-info a,
.contact-info span {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.copyright strong {
    color: var(--primary-orange);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-orange);
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-brand-title {
        font-size: 1.5rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-contact-list {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .footer-contact-list li {
        flex: 1 1 calc(50% - 0.5rem);
        margin-bottom: 0;
        min-width: 140px;
    }
    
    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
    
    .contact-info {
        flex: 1;
    }
    
    .contact-label {
        font-size: 0.7rem;
    }
    
    .contact-info a,
    .contact-info span {
        font-size: 0.85rem;
    }
    
    /* İletişim bölümünü mobilde gizle */
    .footer-contact {
        display: none;
    }
}

/* Background Sections */
.bg-light-section {
    background-color: var(--bg-light);
}

.bg-dark-section {
    background-color: var(--primary-black);
    color: white;
}

.bg-dark-section .section-title {
    color: white;
}

.bg-dark-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Service Detail Section */
.service-detail {
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-detail:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-detail h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.service-detail p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.service-detail ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.service-detail ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

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

.service-features-list li {
    padding: 1rem 0;
    padding-left: 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.service-features-list li:last-child {
    border-bottom: none;
}

.service-features-list li i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.service-features-list li:hover {
    padding-left: 10px;
    color: var(--primary-orange);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-logo-img {
        height: 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn-orange,
    .hero-buttons .btn-outline-orange {
        flex: 1 1 auto;
        min-width: 140px;
        text-align: center;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .vision-mission-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animation Classes - Removed scroll animations */

/* Utility Classes */
.text-light-emphasis {
    color: rgba(255, 255, 255, 0.7) !important;
}

.shadow-custom {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Process Section Styles */
.process-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    background-image: url('../images/index-surec.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(44, 44, 44, 0.80) 100%);
    z-index: 0;
}

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

.process-section .container {
    position: relative;
    z-index: 2;
}

.process-badge {
    display: inline-block;
    background: white;
    color: var(--primary-black);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.process-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

.process-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 800px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.process-card {
    background: var(--dark-gray);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--light-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.process-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.process-icon {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    color: var(--primary-orange);
    transform: scale(1.1);
}

.process-card h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1rem;
}

/* Process Section Responsive */
@media (max-width: 768px) {
    .process-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .process-title {
        font-size: 2rem;
    }
    
    .process-description {
        font-size: 1rem;
    }
    
    .process-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .process-icon {
        font-size: 2.5rem;
    }
}

/* Why Choose Us Section Styles */
.why-choose-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(255,107,53,0.1)"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.why-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--light-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-orange);
}

.why-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.why-icon-wrapper.orange {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.why-icon-wrapper.blue {
    background: linear-gradient(135deg, var(--light-blue), var(--light-blue-hover));
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

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

.why-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.why-card h4 {
    color: var(--primary-black);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.why-card p {
    color: var(--text-gray);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 0;
}

.why-card:hover h4 {
    color: var(--primary-orange);
}

.why-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    display: block;
    margin-bottom: 0.5rem;
}

.why-stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us Responsive */
@media (max-width: 768px) {
    .why-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .why-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .why-icon-wrapper i {
        font-size: 2rem;
    }
    
    .why-card h4 {
        font-size: 1.3rem;
    }
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 50%, var(--primary-black) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

@keyframes float-orange-1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(50px, 50px) scale(1.2);
        opacity: 0.8;
    }
    66% {
        transform: translate(-30px, 80px) scale(0.9);
        opacity: 0.5;
    }
}

@keyframes float-orange-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-40px, -60px) scale(1.3);
        opacity: 0.7;
    }
}

/* Soldan sağa kayan ışık efekti - Section'ın tamamını kapsar */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 53, 0.2) 30%, 
        rgba(255, 107, 53, 0.4) 50%, 
        rgba(255, 107, 53, 0.2) 70%, 
        transparent 100%);
    animation: slide-light 6s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes slide-light {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Blurlu parlayan turuncu toplar - Section seviyesinde */
.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, rgba(255, 107, 53, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    top: -100px;
    left: -100px;
    animation: float-orange-1 8s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

/* Ek animasyonlu toplar için - Section seviyesinde ekstra efektler */
.cta-section .container {
    position: relative;
    z-index: 1;
}

/* Container içindeki ekstra efektler - padding dahil tüm alanı kapsar */
.cta-section .container::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, rgba(255, 107, 53, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    bottom: -50px;
    right: -50px;
    animation: float-orange-2 10s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.cta-section .container::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, rgba(255, 107, 53, 0.05) 50%, transparent 80%);
    border-radius: 50%;
    filter: blur(40px);
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    animation: float-orange-3 12s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes float-orange-3 {
    0%, 100% {
        transform: translateY(-50%) translateX(0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-60%) translateX(30px) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-40%) translateX(60px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-55%) translateX(30px) scale(1.05);
        opacity: 0.55;
    }
}

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

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-blue));
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
    }
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    width: auto;
    text-align: center;
}

.cta-btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
    color: white;
}

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

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

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.cta-feature-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

/* CTA Section Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Instagram Floating Button */
.instagram-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #833AB4, #E1306C, #FCAF45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: instagram-bounce 2s ease-in-out infinite;
}

.instagram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(225, 48, 108, 0.6);
}

.instagram-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.instagram-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-black);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.instagram-float:hover .instagram-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

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

/* Instagram Button Pulse Effect */
.instagram-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(225, 48, 108, 0.4);
    animation: instagram-pulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes instagram-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-bounce 2s ease-in-out infinite;
}

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

.whatsapp-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-black);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

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

/* WhatsApp Button Pulse Effect */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsapp-pulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsive - Instagram Button */
@media (max-width: 768px) {
    .instagram-float {
        width: 55px;
        height: 55px;
        bottom: 85px;
        right: 20px;
    }
    
    .instagram-icon {
        font-size: 1.75rem;
    }
    
    .instagram-tooltip {
        font-size: 0.8rem;
        padding: 6px 12px;
        right: 65px;
    }
    
    .instagram-float:hover .instagram-tooltip {
        right: 70px;
    }
}

/* Responsive - WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        font-size: 1.75rem;
    }
    
    .whatsapp-tooltip {
        font-size: 0.8rem;
        padding: 6px 12px;
        right: 65px;
    }
    
    .whatsapp-float:hover .whatsapp-tooltip {
        right: 70px;
    }
}

/* FAQ Accordion Styles */
.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 10px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.accordion-button {
    background-color: white;
    color: var(--primary-black);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(74, 144, 226, 0.05));
    color: var(--primary-orange);
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6B35'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231A1A1A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    background-color: white;
}

.accordion-collapse {
    transition: all 0.3s ease;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .accordion-button {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }
    
    .accordion-body {
        padding: 1.25rem;
        font-size: 0.9rem;
    }
}

/* KVKK Page Styles */
.kvkk-content {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.kvkk-section {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 2rem;
}

.kvkk-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.kvkk-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.kvkk-list {
    list-style: none;
    padding-left: 0;
}

.kvkk-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
    color: var(--text-gray);
}

.kvkk-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.contact-info-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
}

.contact-info-box p {
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.contact-info-box a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-box a:hover {
    color: var(--dark-orange);
    text-decoration: underline;
}

/* Application Form Styles */
.application-form {
    background: #f8f6f3;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-section {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-section:last-of-type {
    margin-bottom: 0;
}

.form-section-title {
    color: var(--primary-orange);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.application-form .form-label {
    font-weight: 500;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.application-form .form-control {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.application-form .form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.application-form .input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-left: none;
    color: var(--text-gray);
}

.application-form .input-group .form-control:focus + .input-group-text,
.application-form .input-group:focus-within .input-group-text {
    border-color: var(--primary-orange);
}

.application-form .form-check {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 1.5rem;
}

.application-form .form-check-input {
    margin-top: 0;
    margin-right: 0.5rem;
    margin-left: 0;
    cursor: pointer;
    flex-shrink: 0;
    width: 1.25em;
    height: 1.25em;
    position: relative;
    float: none;
}

.application-form .form-check-input:checked {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.application-form .form-check-input:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.application-form .form-check-label {
    cursor: pointer;
    font-weight: 400;
    color: var(--primary-black);
    margin-bottom: 0;
    line-height: 1.5;
    padding-left: 0;
    display: block;
    position: relative;
}

/* Radio button container düzeni */
.application-form .d-flex.gap-3 {
    flex-wrap: nowrap;
    align-items: flex-start;
}

.application-form .d-flex.gap-3 .form-check {
    white-space: nowrap;
}

.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    padding: 0.5rem;
}

.file-upload-wrapper input[type="file"]::file-selector-button {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.file-upload-wrapper input[type="file"]::file-selector-button:hover {
    background: linear-gradient(135deg, var(--dark-orange), var(--primary-orange));
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.form-submit-wrapper {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
}

.form-submit-wrapper .btn-orange {
    padding: 0.875rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 200px;
}

/* Application Form Responsive */
@media (max-width: 768px) {
    .application-form {
        padding: 1.5rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    .form-section-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .form-submit-wrapper .btn-orange {
        width: 100%;
        min-width: auto;
    }
}

/* Join Team Card Styles */
.join-team-card {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.join-team-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.join-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
}

.join-team-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.join-team-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.join-team-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.join-team-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.join-team-card:hover .join-team-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.join-team-icon i {
    font-size: 3rem;
    color: white;
}

.join-team-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.join-team-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.join-team-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.join-team-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
}

.join-team-feature-item i {
    color: var(--primary-orange);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.join-team-button {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.join-team-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

/* Join Team Card Responsive */
@media (max-width: 768px) {
    .join-team-card {
        padding: 2rem 1.5rem;
    }
    
    .join-team-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .join-team-icon i {
        font-size: 2.5rem;
    }
    
    .join-team-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .join-team-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .join-team-features {
        margin-bottom: 2rem;
    }
    
    .join-team-button {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 2rem;
    }
}

/* 404 Error Page Styles */
.error-404-content {
    position: relative;
    z-index: 1;
}

.error-404-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.error-404-icon i {
    font-size: 4rem;
    color: white;
}

.error-404-title {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.error-404-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.error-404-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.error-404-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.error-404-buttons .btn-orange,
.error-404-buttons .btn-outline-orange {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
}

.error-404-links {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.error-404-links h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.error-404-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.error-404-link:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-orange);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.error-404-link i {
    font-size: 2rem;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.error-404-link:hover i {
    transform: scale(1.2);
    color: var(--primary-orange);
}

.error-404-link span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* 404 Error Page Responsive */
@media (max-width: 768px) {
    .error-404-icon {
        width: 100px;
        height: 100px;
    }
    
    .error-404-icon i {
        font-size: 3rem;
    }
    
    .error-404-title {
        font-size: 5rem;
    }
    
    .error-404-subtitle {
        font-size: 2rem;
    }
    
    .error-404-description {
        font-size: 1rem;
    }
    
    .error-404-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .error-404-buttons .btn-orange,
    .error-404-buttons .btn-outline-orange {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .error-404-link {
        padding: 1.25rem 0.75rem;
    }
    
    .error-404-link i {
        font-size: 1.75rem;
    }
    
    .error-404-link span {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .kvkk-content {
        padding: 2rem 1.5rem;
    }
    
    .kvkk-section h3 {
        font-size: 1.25rem;
    }
    
    .kvkk-list li {
        padding-left: 1.25rem;
        font-size: 0.95rem;
    }
}

/* Photo Preview Styles */
.photo-preview-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.photo-preview-item img {
    transition: transform 0.3s ease;
}

.photo-preview-item:hover img {
    transform: scale(1.05);
}

.photo-thumbnail {
    transition: transform 0.3s ease;
}

.photo-thumbnail:hover {
    transform: scale(1.1);
}

.photo-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.photo-thumbnail:hover + .photo-overlay-icon,
.photo-preview-item:hover .photo-overlay-icon {
    opacity: 1;
}

