/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden; /* Yatay kaydırmayı en üst seviyede engelle */
}

:root {
    --primary-color: #000000fa; /* Daha canlı bir mavi renk */
    --secondary-color: #000000; /* Daha canlı bir yeşil renk */
    --accent-color: #FF5722; /* Vurgu rengi */
    --dark-color: #212121;
    --light-color: #f8f9fa;
    --gray-color: #757575;
    --border-color: #e0e0e0;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --gradient-primary: linear-gradient(135deg, #6118b4fa 0%, #1976d2 100%);
    --gradient-secondary: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    --card-border-radius: 12px;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
    overflow-x: hidden; /* Zaten vardı, tekrar teyit */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 50px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-secondary:hover {
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
    transform: translateY(-2px);
}

/* Header Stili */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px; /* Logo, nav ve butonlar arasında boşluk */
}

.logo {
    flex: 1; /* Logo sola yaslansın */
}

nav {
    flex: 2; /* Nav orta alanda genişlesin */
}

.header-buttons {
    flex: 1; /* Butonlar sağa yaslansın */
    display: flex;
    justify-content: flex-end;
    gap: 10px; /* Butonlar arasında boşluk */
}

nav ul {
    display: flex;
    gap: 20px; /* Menü öğeleri arası eşit boşluk */
    align-items: center;
}

nav ul li {
    margin: 0; /* Margin sıfırla */
}

.logo h1 {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

nav ul li a:hover::after, nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

.header-buttons .phone {
    margin-left: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

.header-buttons .phone i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* AI menü öğesi için özel stil */
.ai-nav-item {
    position: relative;
    background: linear-gradient(90deg, #00C9FF 0%, #5306b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
}

.ai-nav-item::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00C9FF 0%, #5306b8 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.ai-nav-item:hover::before {
    transform: scaleX(1);
}

.ai-nav-item .ai-icon {
    display: inline-flex;
    margin-right: 6px;
    position: relative;
}

.ai-nav-item .ai-icon i {
    font-size: 1.1em;
    animation: aiPulse 1.5s infinite alternate;
}

@keyframes aiPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Mobil Menü Stili */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--accent-color);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 900;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 992px) {
    html, body {
        overflow-x: hidden;
    }

    header {
        overflow-x: hidden;
    }

    .mobile-menu-btn {
        display: block;
        order: 3;
        margin-left: auto;
        z-index: 1002;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100%;
        background-color: white;
        position: fixed;
        top: 0;
        right: -300px; /* Başlangıçta ekran dışında */
        width: 280px;
        height: 100vh;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease; /* Sadece sağa kayma animasyonu */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 20px 40px;
        overflow-y: auto;
        transform: translateX(0); /* Ekstra katmanlama ipucu */
        z-index: 1005; /* Aktif değilkenki z-index */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1200;
        transition: transform 0.3s ease, visibility 0.3s;
        display: flex; /* Flexbox yapısını koru */
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 20px 40px;
        overflow-y: auto;
        transform: translateX(100%);
        visibility: hidden; /* Başlangıçta gizli */
    }
    
    nav.active {
        transform: translateX(0);
        visibility: visible; /* Aktif olduğunda görünür */
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        padding: 0;
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        display: block;
        padding: 10px 15px;
        font-size: 1.1rem;
        width: 100%;
        position: relative;
        color: var(--dark-color);
        font-weight: 600;
    }
    
    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
        color: var(--dark-color);
        cursor: pointer;
        transition: var(--transition);
        z-index: 1300;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: #f5f5f5;
    }
    
    .close-menu:hover {
        color: var(--accent-color);
        background-color: rgba(0,0,0,0.05);
    }
    
    header .container {
        flex-wrap: nowrap;
    }
    
    .header-buttons {
        order: 2;
    }
    
    .header-buttons .btn {
        display: none;
    }
}

@media (max-width: 576px) {
    .header-buttons .phone {
        font-size: 0;
    }
    
    .header-buttons .phone i {
        font-size: 1.2rem;
        margin-right: 0;
        background: var(--gradient-primary);
        color: white;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
    }
}

/* Hero Bölümü */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://purerestorations.gr/wp-content/uploads/2020/06/%CE%BA%CE%B1%CE%B8%CE%B1%CF%81%CE%B9%CF%83%CE%BC%CF%8C%CF%82-%CF%86%CF%8D%CE%BB%CE%B1%CE%BE%CE%B7-%CF%87%CE%B1%CE%BB%CE%B9%CF%8E%CE%BD-1-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax efekti */
    color: white;
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    z-index: 1; /* Hero'nun z-index değerini düşür */
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 140, 255, 0.6) 0%, rgba(25, 118, 210, 0.6) 100%);
    z-index: 1;
    opacity: 0.7;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 180px;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: white;
    position: relative;
    display: inline-block;
}

.stat-item h3::after {
    content: '+';
    position: absolute;
    top: 0;
    right: -15px;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.stat-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Hizmetler Bölümü */
#services {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

#services::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    opacity: 0.05;
}

#services::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    opacity: 0.05;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.service-card {
    background-color: white;
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 0.5s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(33, 150, 243, 0.1);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.3);
    transform: rotate(5deg) scale(1.1);
}

.service-icon i {
    font-size: 35px;
    color: var(--primary-color);
    transition: all 0.5s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-bottom: 3px;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.service-link:hover::after {
    width: 100%;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(8px);
}

.services-more {
    text-align: center;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

/* Hakkımızda Bölümü */
#about {
    padding: 80px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--gray-color);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
}

.feature p {
    color: var(--gray-color);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Müşteri Yorumları */
#testimonials {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

#testimonials::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    opacity: 0.05;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: white;
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px 30px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '\201C'; /* Tırnak işareti */
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-color);
}

.testimonial-author h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* İletişim Bölümü */
#contact {
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.contact-item h3 {
    margin-bottom: 5px;
}

.contact-form form {
    display: grid;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
    background-color: white;
}

/* Fiyat Hesaplama Bölümü */
#price-calculator {
    padding: 100px 0;
    background: linear-gradient(135deg, #e5bdff 0%, rgb(0, 238, 255) 100%);
    position: relative;
    overflow: hidden;
}

#price-calculator::before,
#price-calculator::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

#price-calculator::before {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.5) 0%, #7736df(184, 28, 132, 0) 70%);
    top: -100px;
    left: -100px;
    animation: pulseBlue 8s infinite alternate ease-in-out;
}

#price-calculator::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(175, 76, 76, 0.5) 0%, #7736df(76, 175, 80, 0) 70%);
    bottom: -150px;
    right: -150px;
    animation: pulseGreen 10s infinite alternate ease-in-out;
}

@keyframes pulseBlue {
    0% { transform: scale(0.9); opacity: 0.05; }
    100% { transform: scale(1.1); opacity: 0.1; }
}

@keyframes pulseGreen {
    0% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(0.9); opacity: 0.05; }
}

.price-calculator-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.ai-decoration {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

.ai-decoration i {
    margin-right: 8px;
    animation: aiPulse 1.5s infinite alternate;
}

.calculator-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: var(--gray-color);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.calculator-container {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--card-border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.calculator-step {
    margin-bottom: 30px;
    text-align: center;
}

.calculator-step h3 {
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--dark-color);
}

.calculator-input {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.calculator-input input[type="number"] {
    padding: 12px 18px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 1rem;
    width: 80px;
    text-align: center;
    transition: var(--transition);
}

.calculator-input input[type="number"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.calculator-input button i {
    margin-right: 8px;
}

.calculator-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.calculator-card {
    background-color: #fff;
    border-radius: var(--card-border-radius);
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.calculator-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.calculator-card-entering {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

.calculator-card-entered {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.calculator-card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.calculator-card-title span {
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.calculator-card-title span i {
    margin-right: 8px;
    font-size: 1.1em;
}

.remove-card {
    background: none;
    border: none;
    color: var(--gray-color);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 5px;
    transition: var(--transition);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-card:hover {
    color: var(--accent-color);
    background-color: rgba(255, 87, 34, 0.1);
}

.calculator-field {
    margin-bottom: 15px;
}

.calculator-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.calculator-field input,
.calculator-field select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f9f9f9;
}

.calculator-field input:focus,
.calculator-field select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
    background-color: white;
}

.calculate-btn {
    text-align: center;
    margin-top: 30px;
}

#calculate-price-btn i {
    margin-right: 8px;
    animation: aiPulse 1.5s infinite alternate;
}

.calculation-result {
    margin-top: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #083cca 100%);
    border-radius: var(--card-border-radius);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    animation: fadeInResult 0.8s ease-out;
}

@keyframes fadeInResult {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.ai-glow {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glowText 2s infinite alternate ease-in-out;
}

@keyframes glowText {
    0% { text-shadow: 0 0 5px rgba(33, 150, 243, 0.5), 0 0 10px #d7f52b(76, 175, 80, 0.3); }
    100% { text-shadow: 0 0 10px rgba(33, 150, 243, 0.7), 0 0 20px #d7f52b(76, 175, 80, 0.5); }
}

.result-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.result-details {
    flex: 2;
    min-width: 250px;
}

.result-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    font-size: 1rem;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item-detail {
    color: var(--gray-color);
}

.result-item-price {
    font-weight: 600;
    color: var(--dark-color);
}

.result-total {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px;
    background-color: rgba(232, 245, 233, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.total-price {
    margin-bottom: 15px;
}

.total-price span {
    display: block;
    font-size: 1rem;
    color: var(--gray-color);
    margin-bottom: 5px;
}

.total-price h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-note {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 20px;
    max-width: 250px;
}

.result-total .btn-primary {
    margin-top: auto;
}

.calculator-pulse {
    animation: pulseWarning 0.5s ease-in-out;
}

@keyframes pulseWarning {
    0% { transform: scale(1); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07); }
    50% { transform: scale(1.03); box-shadow: 0 0 0 5px rgba(255, 87, 34, 0.3); }
    100% { transform: scale(1); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07); }
}

@media (max-width: 768px) {
    .price-calculator-title {
        font-size: 2rem;
    }
    .calculator-desc {
        font-size: 1rem;
    }
    .calculator-items {
        grid-template-columns: 1fr;
    }
    .result-container {
        flex-direction: column;
        gap: 30px;
    }
    .result-total {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-top: 30px;
    }
}

/* WhatsApp Butonu Stili */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-button i {
    font-size: 32px;
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 60px 0;
}
footer a {
    color: var(--light-color);
    transition: color var(--transition);
}
footer a:hover {
    color: var(--primary-color);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}
.footer-logo p {
    color: var(--light-color);
}
.footer-links,
.footer-services,
.footer-contact {
    display: flex;
    flex-direction: column;
}
.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #fff;
}
.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
}
.footer-links ul li,
.footer-services ul li {
    margin: 5px 0;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}
.social-icons a {
    margin-left: 15px;
    color: var(--light-color);
    font-size: 1.2rem;
}
.social-icons a:hover {
    color: var(--primary-color);
}