/* Elementor Global Pratik Adam Stilleri */
:root {
    --e-global-color-primary: #0071bb;
    --e-global-color-secondary: #00adee;
    --e-global-color-text: #021b24;
    --e-global-color-accent: #f8fbff;
    --e-global-typography-primary-font-family: "Plus Jakarta Sans";
    --e-global-typography-primary-font-weight: 800;
    --e-global-typography-secondary-font-family: "Plus Jakarta Sans";
    --e-global-typography-secondary-font-weight: 700;
    --e-global-typography-text-font-family: "Manrope";
    --e-global-typography-text-font-weight: 400;
    --e-global-typography-accent-font-family: "Manrope";
    --e-global-typography-accent-font-weight: 600;
}

/* Tüm Sayfa Varsayılan Stili */
body {
    font-family: var(--e-global-typography-text-font-family), sans-serif;
    color: var(--e-global-color-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--e-global-typography-primary-font-family), sans-serif;
}

/* Top Bar */
.top-bar {
    background-color: var(--e-global-color-text);
    color: white;
    font-size: 0.875rem;
}

/* Header / Navbar */
.main-header {
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-link {
    position: relative;
    font-weight: 600;
    overflow: hidden;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0071bb;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #0071bb, #00adee);
    color: white;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 113, 187, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 113, 187, 0.4);
}

.btn-outline {
    border: 2px solid #0071bb;
    color: #0071bb;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #0071bb;
    color: white;
}

/* Hero Slider */
.swiper-container-hero {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform 6s ease;
}

.swiper-slide-active .hero-slide-bg {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 27, 36, 0.9) 0%, rgba(2, 27, 36, 0.6) 50%, rgba(0, 113, 187, 0.2) 100%);
    z-index: -1;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.swiper-slide-active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 6px;
    background: #00adee;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: all 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #0071bb;
}

/* Shape Dividers */
.shape-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
}

.shape-bottom svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* Feature Cards */
.feature-box {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 113, 187, 0.05);
    border-bottom: 4px solid transparent;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-bottom-color: #0071bb;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f8fbff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #0071bb;
    margin-bottom: 1.5rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-box:hover .icon-wrapper {
    background: #0071bb;
    color: white;
}

/* Pricing */
.pricing-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.3s;
    border: 1px solid #eee;
    overflow: hidden;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: #0071bb;
    box-shadow: 0 30px 60px rgba(0, 113, 187, 0.1);
    z-index: 10;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.price-bg-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(0, 173, 238, 0.1);
    border-radius: 50%;
    z-index: 0;
}

/* Offcanvas */
#offcanvas {
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Section Title Line */
.section-title-wrapper {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
    display: inline-block;
}

.section-title-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #00adee;
    border-radius: 2px;
}

.section-title-wrapper.text-left::after {
    left: 0;
    transform: none;
}