/* Custom CSS for ProClean - İnşaat Temizlik Hizmetleri */

/* Google Fonts */
body {
    font-family: 'Inter', sans-serif;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-bg img {
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.8) 0%, 
        rgba(59, 130, 246, 0.6) 50%, 
        rgba(30, 64, 175, 0.8) 100%);
    backdrop-filter: blur(2px);
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.85) !important;
}

.hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero-subtitle {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-badge {
    display: block;
    text-align: center;
}

.hero-badge .badge {
    font-size: 1rem !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    display: inline-block;
}

@media (min-width: 992px) {
    .hero-badge {
        text-align: left;
    }
}

.hero-buttons .btn {
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-warning:hover {
    background: linear-gradient(45deg, #ffc107, #ffca2c);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffc107;
    color: #ffc107;
}

/* Hero Stats */
.hero-stats .stat-item h3 {
    font-size: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-stats .stat-item p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Enhanced Feature Cards */
.feature-card {
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid rgba(255, 193, 7, 0.5) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-card .feature-icon i {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

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

/* Enhanced Scroll Indicator */
.scroll-indicator {
    z-index: 10;
}

.scroll-down-btn {
    display: block;
    transition: all 0.3s ease;
}

.scroll-down-btn:hover {
    transform: translateY(-3px);
}

.scroll-down-animation {
    animation: scrollFloat 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.scroll-down-btn:hover .scroll-arrow {
    border-color: #ffc107;
    background: rgba(255, 193, 7, 0.2);
    transform: scale(1.1);
}

.scroll-down-btn:hover .scroll-arrow i {
    color: #ffc107 !important;
}

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

/* Scroll Arrow Bounce Animation */
.scroll-arrow i {
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Responsive Hero Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .hero-stats .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .hero-features {
        position: static !important;
        margin-top: 3rem;
        margin-bottom: 2rem !important;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
    
    .scroll-indicator {
        position: static !important;
        margin-top: 2rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem !important;
    }
    
    .hero-stats {
        margin-top: 2rem !important;
    }
    
    .hero-stats .stat-item h3 {
        font-size: 1.25rem;
    }
}

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

/* Better text contrast */
.text-white-75 {
    color: rgba(255, 255, 255, 0.85) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Service Cards with Images */
.service-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    border-color: #3b82f6;
}

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

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(59, 130, 246, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-overlay i {
    color: white;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.service-arrow {
    margin-top: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Modal Styles */
.modal-xl {
    max-width: 1200px;
    margin: 1.75rem auto;
}

.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem;
    background: #f8fafc;
}

.modal-title {
    color: #1e40af;
    font-size: 1.5rem;
    margin: 0;
}

.btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    transition: color 0.3s ease;
}

.btn-close:hover {
    color: #1e40af;
}

.modal-body {
    padding: 0;
    max-height: 80vh;
    overflow-y: auto;
}

/* Carousel Styles */
.carousel {
    border-radius: 0;
    overflow: hidden;
    height: 400px;
}

.carousel-item {
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-indicators {
    bottom: 20px;
    margin: 0;
    gap: 8px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #3b82f6;
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    border: none;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(59, 130, 246, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Service Details */
.modal .col-lg-4 {
    padding: 2rem;
    background: #f8fafc;
    height: 400px;
    overflow-y: auto;
}

.modal h6 {
    color: #1e40af;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.modal ul {
    margin-bottom: 2rem;
}

.modal ul li {
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.modal ul li i {
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.modal .btn-primary {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.modal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

/* Responsive Modal */
@media (max-width: 1200px) {
    .modal-xl {
        max-width: 95%;
        margin: 1rem auto;
    }
}

@media (max-width: 768px) {
    .modal-xl {
        max-width: 95%;
        margin: 0.5rem auto;
    }
    
    .modal-content {
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-title {
        font-size: 1.25rem;
    }
    
    .carousel {
        height: 250px;
    }
    
    .modal .col-lg-4 {
        padding: 1.5rem;
        height: auto;
        max-height: 300px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }
    
    .carousel-indicators {
        bottom: 10px;
    }
    
    .carousel-indicators button {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .modal-xl {
        max-width: 98%;
        margin: 0.25rem auto;
    }
    
    .modal-header {
        padding: 0.75rem;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
    
    .carousel {
        height: 200px;
    }
    
    .modal .col-lg-4 {
        padding: 1rem;
        max-height: 250px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
        margin: 0 5px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
}

/* Modal Backdrop */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.6);
}

/* Modal Animation */
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

.modal.show .modal-dialog {
    transform: none;
}

/* Service Cards Grid */
@media (max-width: 992px) {
    .service-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .service-image {
        height: 150px;
    }
}

/* Fix for modal overflow on small screens */
@media (max-width: 480px) {
    .modal-body {
        max-height: 70vh;
    }
    
    .modal .col-lg-4 {
        max-height: 200px;
    }
    
    .carousel {
        height: 180px;
    }
}

/* Ensure modal doesn't exceed viewport */
.modal-dialog {
    max-height: 90vh;
    margin: 1.75rem auto;
}

.modal-content {
    max-height: 90vh;
    overflow: hidden;
}

/* Smooth scrolling for modal content */
.modal .col-lg-4 {
    scrollbar-width: thin;
    scrollbar-color: #3b82f6 #e5e7eb;
}

.modal .col-lg-4::-webkit-scrollbar {
    width: 6px;
}

.modal .col-lg-4::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 3px;
}

.modal .col-lg-4::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 3px;
}

.modal .col-lg-4::-webkit-scrollbar-thumb:hover {
    background: #1e40af;
}

/* Feature Icons */
.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Stat Cards */
.stat-card {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

/* Contact Items */
.contact-item {
    transition: transform 0.3s ease;
    border: 1px solid #e5e7eb;
}

.contact-item:hover {
    transform: translateY(-3px);
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Form Styling */
.form-control:focus,
.form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

/* Button Animations */
.btn {
    transition: all 0.3s ease;
    border-radius: 50px;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border: none;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    background: white;
    color: #1e40af;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Social Links */
.social-links .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links .btn:hover {
    transform: translateY(-3px);
    background: #3b82f6;
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.5rem;
    color: #1e40af !important;
    font-weight: 700;
}

.navbar-brand i {
    color: #3b82f6;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    color: #374151 !important;
}

.nav-link:hover {
    color: #1e40af !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

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

.nav-link.active {
    color: #1e40af !important;
    font-weight: 600;
}

/* Section Headers */
.section-header h2 {
    color: #1f2937 !important;
}

.section-header p {
    color: #6b7280 !important;
}

/* Card Titles */
.card-title {
    color: #1f2937 !important;
}

.card-text {
    color: #6b7280 !important;
}

/* List Items */
.list-unstyled li {
    color: #4b5563 !important;
}

.list-unstyled li i {
    color: #10b981 !important;
    font-weight: bold;
}

/* Contact Info */
.contact-item h5 {
    color: #1f2937 !important;
}

.contact-item p {
    color: #6b7280 !important;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937, #374151) !important;
}

.footer h4, .footer h5 {
    color: white !important;
}

.footer p {
    color: #d1d5db !important;
}

.footer a {
    color: #9ca3af !important;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #3b82f6 !important;
}

/* Text Colors */
.text-primary {
    color: #1e40af !important;
}

.text-muted {
    color: #6b7280 !important;
}

.text-dark {
    color: #1f2937 !important;
}

/* Background Colors */
.bg-light {
    background-color: #f9fafb !important;
}

.bg-white {
    background-color: white !important;
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-card h3 {
    animation: countUp 0.8s ease-out;
    color: white !important;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 100px 0 50px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .hero-card {
        margin-top: 2rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        margin-bottom: 0.5rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e40af;
}

/* Focus States */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: none;
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    .social-links {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .text-muted {
        color: #374151 !important;
    }
    
    .bg-light {
        background-color: #f3f4f6 !important;
    }
}

/* Gallery Styles */
.gallery-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 58, 64, 0.8), rgba(0, 123, 255, 0.6));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gallery-content {
    padding: 20px;
}

/* Filter Buttons */
.filter-buttons {
    margin-bottom: 2rem;
}

.filter-btn {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transform: translateY(-2px);
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
    border-color: #0d6efd;
    color: #0d6efd;
}

/* Gallery Modal */
.gallery-image-container {
    width: 100%;
    height: 45vh;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gallery-details {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-details .tags .badge {
    font-size: 0.75rem;
    padding: 4px 8px;
}

/* Gallery Item Animation */
.gallery-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

.gallery-item.hide {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Navigation Enhancement */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    background: rgba(0,0,0,0.5);
    border-radius: 0 5px 5px 0;
}

.carousel-control-next {
    border-radius: 5px 0 0 5px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 20px 20px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .service-card:hover,
    .stat-card:hover,
    .contact-item:hover,
    .gallery-card:hover {
        transform: none;
    }
} 

/* Floating Social Media Buttons */
.floating-social {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-social .social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.floating-social .social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    color: white;
}

/* WhatsApp Button */
.floating-social .social-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation-delay: 0s;
}

.floating-social .social-btn.whatsapp:hover {
    background: linear-gradient(135deg, #2EE371, #147A6E);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Facebook Button */
.floating-social .social-btn.facebook {
    background: linear-gradient(135deg, #4267B2, #1877f2);
    animation-delay: 0.2s;
}

.floating-social .social-btn.facebook:hover {
    background: linear-gradient(135deg, #5578C4, #2985ff);
    box-shadow: 0 8px 25px rgba(66, 103, 178, 0.5);
}

/* Instagram Button */
.floating-social .social-btn.instagram {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4, #5851DB, #405DE6);
    animation-delay: 0.4s;
}

.floating-social .social-btn.instagram:hover {
    background: linear-gradient(135deg, #F05468, #D945A0, #9B4BC8, #6B5CEF, #5068F0);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.5);
}

/* Twitter Button */
.floating-social .social-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd1);
    animation-delay: 0.6s;
}

.floating-social .social-btn.twitter:hover {
    background: linear-gradient(135deg, #3AB0F5, #1A9BE3);
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.5);
}

/* Phone Button */
.floating-social .social-btn.phone {
    background: linear-gradient(135deg, #28a745, #20c997);
    animation-delay: 0.8s;
}

.floating-social .social-btn.phone:hover {
    background: linear-gradient(135deg, #34ce57, #2dd4aa);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5);
}

/* Email Button */
.floating-social .social-btn.email {
    background: linear-gradient(135deg, #dc3545, #c82333);
    animation-delay: 1s;
}

.floating-social .social-btn.email:hover {
    background: linear-gradient(135deg, #e85863, #d73447);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.5);
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pulse Animation for WhatsApp */
.floating-social .social-btn.whatsapp::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
    z-index: -1;
}

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

/* Tooltip for social buttons */
.floating-social .social-btn {
    position: relative;
}

.floating-social .social-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.floating-social .social-btn::before {
    content: '';
    position: absolute;
    left: 65px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-social .social-btn:hover::after,
.floating-social .social-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-social {
        left: 15px;
        bottom: 15px;
        gap: 12px;
    }
    
    .floating-social .social-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .floating-social .social-btn::after {
        display: none; /* Hide tooltips on mobile */
    }
}

@media (max-width: 480px) {
    .floating-social {
        left: 10px;
        bottom: 10px;
        gap: 10px;
    }
    
    .floating-social .social-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
} 

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}

.btn-back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, #0056b3, #004085);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.5);
    color: white;
}

/* Back to Top Tooltip */
.btn-back-to-top {
    position: relative;
}

.btn-back-to-top::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-back-to-top::before {
    content: '';
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.btn-back-to-top:hover::after,
.btn-back-to-top:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Hero Section Responsive Fixes */
@media (max-width: 991.98px) {
    .hero-features {
        display: none !important;
    }
    
    .scroll-indicator {
        display: none !important;
    }
    
    .hero-section .container {
        padding-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .hero-badge {
        margin-bottom: 2rem !important;
    }
    
    .hero-buttons {
        margin-bottom: 2rem !important;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem !important;
        padding: 0.75rem 2rem !important;
    }
    
    .hero-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    /* Back to top button - mobilde küçült */
    .btn-back-to-top {
        width: 45px;
        height: 45px;
        font-size: 16px;
        right: 15px;
        bottom: 15px;
    }
    
    .btn-back-to-top::after {
        display: none; /* Mobilde tooltip gizle */
    }
    
    .btn-back-to-top::before {
        display: none; /* Mobilde tooltip arrow gizle */
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .hero-badge .badge {
        font-size: 0.9rem !important;
        padding: 0.5rem 1rem !important;
    }
    
    .hero-buttons .btn {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem;
    }
    
    /* Floating social - mobilde daha küçük */
    .floating-social {
        left: 10px;
        bottom: 80px; /* Back to top butonunun üzerinde */
    }
    
    .floating-social .social-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Back to top button - çok küçük ekranlarda */
    .btn-back-to-top {
        width: 40px;
        height: 40px;
        font-size: 14px;
        right: 10px;
        bottom: 10px;
    }
}

/* Hero content alignment fix */
.hero-section .row.align-items-center {
    min-height: 100vh;
}

@media (max-width: 768px) {
    .hero-section .row.align-items-center {
        min-height: 100vh;
        padding-top: 80px; /* Navbar için */
        padding-bottom: 40px;
    }
}

/* Video Gallery Styles */
.video-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-hover:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.video-thumbnail {
    overflow: hidden;
    border-radius: 0.5rem 0.5rem 0 0;
    position: relative;
}

/* Video Preview on Hover */
.thumbnail-static {
    transition: opacity 0.3s ease;
}

.video-card:hover .thumbnail-static {
    opacity: 0.3;
}

.video-preview {
    transition: opacity 0.3s ease;
    z-index: 1;
}

.video-card:hover .video-preview {
    opacity: 1 !important;
}

.preview-video {
    border-radius: 0.5rem 0.5rem 0 0;
}

.video-overlay {
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-card:hover .video-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
}

.play-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.video-card:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(0, 123, 255, 0.6);
    }
    100% {
        box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    }
}

/* Video Modal */
.modal-xl .modal-content {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
}

.video-container {
    position: relative;
    background: #000;
}

.video-container iframe {
    display: block;
}

/* Video Grid Responsive */
@media (max-width: 768px) {
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .video-container iframe {
        height: 50vh !important;
    }
    
    /* Mobilde önizleme videoyu devre dışı bırak */
    .video-card:hover .video-preview {
        opacity: 0 !important;
    }
    
    .video-card:hover .thumbnail-static {
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .video-container iframe {
        height: 40vh !important;
    }
} 