/* Premium Modern Sigorta Web Sitesi Stilleri */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-warning: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(102, 126, 234, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Top Info Bar */
.top-info-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-info-bar a:hover {
    color: #667eea !important;
    transition: color 0.3s ease;
}

.top-info-bar i {
    transition: transform 0.3s ease;
}

.top-info-bar a:hover i {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .top-info-bar {
        display: none;
    }
}

/* Premium Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 1.2rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar-nav .nav-link {
    font-weight: 600;
    padding: 0.6rem 1.2rem !important;
    margin: 0 0.3rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    color: var(--text-primary) !important;
    font-size: 0.95rem;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link:hover::before {
    width: 70%;
}

.navbar-nav .nav-link:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transform: translateY(-2px);
    color: var(--primary-color) !important;
}

/* Premium Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    33% { 
        transform: translateY(-30px) rotate(5deg) scale(1.05); 
    }
    66% { 
        transform: translateY(-15px) rotate(-3deg) scale(0.98); 
    }
}

.hero-section .display-4 {
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-section .lead {
    font-size: 1.35rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-section .btn {
    animation: fadeInUp 1.2s ease-out;
    margin: 0.5rem 0.5rem 0.5rem 0;
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-2xl);
}

.hero-section .btn-light {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    backdrop-filter: blur(10px);
}

.hero-section .btn-light:hover {
    background: #ffffff;
    color: var(--primary-dark);
}

.hero-section .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-section .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

/* Premium Cards */
.card {
    border: none;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow-md);
    position: relative;
    backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.card-body {
    padding: 2.5rem;
}

.card-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Service Cards */
.card .bi {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 1.5rem;
    animation: pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        transform: scale(1.1) rotate(5deg); 
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Premium Buttons */
.btn {
    border-radius: 6px;
    padding: 0.25rem 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    font-size: 0.7rem;
}

.btn-sm {
    padding: 0.15rem 0.4rem;
    font-size: 0.65rem;
    font-weight: 500;
    border-radius: 5px;
}

.btn-md {
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
}

.btn-lg {
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    color: white;
}

.btn-lg {
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
}

.btn-sm {
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: var(--shadow-2xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.floating-btn:hover::before {
    width: 120px;
    height: 120px;
}

.floating-btn:hover {
    transform: scale(1.15) translateY(-8px) rotate(5deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.floating-btn.phone {
    background: var(--gradient-primary);
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation: pulse-whatsapp 2.5s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% { 
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

/* Premium Footer */
footer {
    background: var(--gradient-dark) !important;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
    padding: 60px 0 30px !important;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

footer h5 {
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

footer a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    color: rgba(255,255,255,0.8);
}

footer a:hover {
    color: #ffffff !important;
    transform: translateX(8px);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    line-height: 45px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 12px;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-8px) scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

/* Premium Form Stilleri */
.form-control,
.form-select {
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    padding: 0.875rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    background: #ffffff;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
    outline: none;
}

/* Premium Alert Stilleri */
.alert {
    border-radius: 16px;
    border: none;
    box-shadow: var(--shadow-md);
    padding: 1.5rem 2rem;
    font-weight: 500;
}

/* Section Headings */
h2.text-center {
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -1px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2.text-center::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Premium Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card,
.hero-section > * {
    animation: fadeInUp 0.8s ease-out backwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

/* Hero Features Carousel */
#heroFeaturesCarousel {
    max-width: 500px;
    margin: 0 auto;
}

#heroFeaturesCarousel .carousel-item {
    padding: 1.5rem 0;
    min-height: 80px;
}

#heroFeaturesCarousel .carousel-control-prev,
#heroFeaturesCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

#heroFeaturesCarousel .carousel-control-prev {
    left: -50px;
}

#heroFeaturesCarousel .carousel-control-next {
    right: -50px;
}

#heroFeaturesCarousel .carousel-control-prev:hover,
#heroFeaturesCarousel .carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

#heroFeaturesCarousel .carousel-indicators {
    position: relative;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

#heroFeaturesCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

#heroFeaturesCarousel .carousel-indicators button.active {
    background: rgba(255, 255, 255, 0.9);
    width: 30px;
    border-radius: 5px;
}

/* Stats Section */
.stats-section {
    margin-top: -50px;
    padding: 60px 0;
    border-radius: 30px 30px 0 0;
    position: relative;
    z-index: 10;
}

.stats-section h2 {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stats-section i {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.stats-section .col-md-3:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Service Cards */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.service-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
}

.service-icon-wrapper i {
    color: white;
    font-size: 2.2rem;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

/* FAQ Accordion - Professional Design */
.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.accordion-button {
    font-weight: 600;
    background: #ffffff;
    border: none;
    box-shadow: none;
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    color: #2c3e50;
    position: relative;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23667eea'%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");
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.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='%23ffffff'%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:focus {
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.15);
    border-color: transparent;
}

.accordion-body {
    background: #f8f9fa;
    line-height: 1.9;
    padding: 1.5rem;
    font-size: 1rem;
    color: #495057;
    border-top: 1px solid #e9ecef;
}

/* Services Carousel */
#servicesCarousel {
    padding: 3rem 0;
}

#servicesCarousel .carousel-item {
    padding: 2rem 0;
}

#servicesCarousel .carousel-control-prev,
#servicesCarousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
}

#servicesCarousel .carousel-control-prev {
    left: -30px;
}

#servicesCarousel .carousel-control-next {
    right: -30px;
}

#servicesCarousel .carousel-control-prev:hover,
#servicesCarousel .carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
    box-shadow: var(--shadow-2xl);
}

#servicesCarousel .carousel-indicators {
    bottom: -60px;
}

#servicesCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    margin: 0 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#servicesCarousel .carousel-indicators button.active {
    background: var(--gradient-primary);
    width: 40px;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
}

/* Partners Slider */
.partners-slider .card {
    background: #ffffff;
    border: 2px solid #f3f4f6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
}

.partners-slider .card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.partners-slider .card:hover img {
    filter: grayscale(0%) brightness(1.1) !important;
    transform: scale(1.15);
}

.partners-slider img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90px;
    filter: grayscale(30%);
}

/* Blog Cards */
.blog-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover img {
    transform: scale(1.15);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

/* Contact Info Icons */
.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info i {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.3rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-info:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

/* Glassmorphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
        min-height: 70vh;
    }
    
    .hero-section .display-4 {
        font-size: 2.25rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    h2.text-center {
        font-size: 2rem;
    }
    
    #servicesCarousel .carousel-control-prev {
        left: 10px;
    }
    
    #servicesCarousel .carousel-control-next {
        right: 10px;
    }
    
    #servicesCarousel .carousel-control-prev,
    #servicesCarousel .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    #heroFeaturesCarousel {
        max-width: 100%;
    }
    
    #heroFeaturesCarousel .carousel-control-prev {
        left: 10px;
    }
    
    #heroFeaturesCarousel .carousel-control-next {
        right: 10px;
    }
    
    #heroFeaturesCarousel .carousel-control-prev,
    #heroFeaturesCarousel .carousel-control-next {
        width: 35px;
        height: 35px;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Premium Hover Effects */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Responsive Navbar Toggler */
.navbar-toggler.btn {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler.btn:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.navbar-toggler.btn:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.navbar-toggler.btn i {
    color: white;
}

/* Partners Carousel */
#partnersCarousel .carousel-control-prev,
#partnersCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

#partnersCarousel .carousel-control-prev-icon,
#partnersCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(102, 126, 234, 0.8);
}

#partnersCarousel .carousel-control-prev:hover,
#partnersCarousel .carousel-control-next:hover {
    opacity: 1;
}

#partnersCarousel .carousel-indicators {
    position: relative;
    margin-top: 1rem;
}

#partnersCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #667eea;
    opacity: 0.5;
}

#partnersCarousel .carousel-indicators button.active {
    opacity: 1;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%) opacity(1) !important;
    transform: scale(1.1);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
