/* Balona - Baskılı Balon Firması CSS Dosyası */
/* Modern ve Canlı Renklerle Tasarım */

/* Temel Resetleme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    /* Canlı Renkler */
    --primary-color: #ff5e62; /* Canlı kırmızı/pembe */
    --secondary-color: #ff9966; /* Turuncu tonu */
    --accent-color: #2e86de; /* Mavi vurgu */
    --accent-light: #54a0ff; /* Açık mavi */
    --dark-color: #2c3e50; /* Koyu lacivert */
    --light-color: #f5f6fa; /* Açık arka plan */
    --white: #ffffff;
    --gradient-bg: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

body {
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
}

/* Header Tasarımı */
header {
    background: var(--gradient-bg);
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow: visible;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: auto;
    max-height: 60px;
    width: auto;
    margin: 0;
    transition: transform 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.05);
}

/* Navigasyon */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

nav ul li a.active {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Hero Bölümü */
.hero {
    height: 80vh;
    background: url('../images/balloons-bg.jpg') no-repeat center center/cover;
    position: relative;
    color: var(--white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--gradient-bg);
    color: var(--white);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Bölümler */
.section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: var(--gradient-bg);
    border-radius: 2px;
}

/* Kart Tasarımları */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Testimonials Bölümü Özel Stilleri */
.testimonials .card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials .card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.testimonials .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonials .card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonials .card-content::before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(255, 94, 98, 0.1);
    line-height: 1;
    z-index: 1;
}

.testimonials .rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonials .rating i {
    color: #ffc107;
    font-size: 16px;
}

.testimonials .rating i.far {
    color: #e0e0e0;
}

.testimonials .card-content p {
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    flex: 1;
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

.testimonials .testimonial-author {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    position: relative;
    z-index: 2;
}

.testimonials .testimonial-author strong {
    display: block;
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.testimonials .testimonial-author span {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* View All Card Styles */
.view-all-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    position: relative;
    overflow: hidden;
}

.view-all-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.view-all-card:hover::before {
    transform: rotate(45deg) scale(1.2);
}

.view-all-card .card-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.view-all-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.view-all-card:hover .view-all-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.view-all-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.view-all-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.view-all-btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.view-all-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(3px);
}

/* Responsive Testimonials */
@media (max-width: 992px) {
    .testimonials .card-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials .card-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials .card-content {
        padding: 1.5rem;
    }
    
    .testimonials .card-content::before {
        font-size: 3rem;
        top: 5px;
        left: 15px;
    }
    
    .view-all-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .view-all-card h3 {
        font-size: 1.2rem;
    }
    
    .view-all-card p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .testimonials .card-content {
        padding: 1.2rem;
    }
    
    .testimonials .card-content p {
        font-size: 0.95rem;
    }
    
    .testimonials .testimonial-author strong {
        font-size: 1rem;
    }
    
    .testimonials .testimonial-author span {
        font-size: 0.85rem;
    }
    
    .view-all-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

.card-img {
    height: 200px;
    overflow: hidden;
}

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

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

.card-content {
    padding: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Neden Biz Bölümü */
.features {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.features::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gradient-bg);
    border-radius: 50%;
    opacity: 0.05;
    top: -150px;
    left: -150px;
    z-index: -1;
}

.features::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--gradient-bg);
    border-radius: 50%;
    opacity: 0.05;
    bottom: -100px;
    right: -100px;
    z-index: -1;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.feature-box {
    display: flex;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    flex-basis: calc(50% - 2rem);
    position: relative;
    z-index: 2;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--primary-color);
}

.feature-icon {
    flex: 0 0 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-bg);
    color: var(--white);
    border-radius: 20px;
    margin-right: 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 94, 98, 0.2);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    margin-bottom: 0.8rem;
    color: var(--dark-color);
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.feature-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-bg);
    border-radius: 10px;
}

.feature-text p {
    color: #666;
    line-height: 1.6;
}

/* Referanslar Bölümü */
.references {
    background-color: var(--light-color);
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}

.reference-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.reference-item img {
    max-width: 150px;
    margin-bottom: 1rem;
}

.reference-item p {
    font-weight: 500;
}

/* İletişim Bölümü */
.contact {
    background: url('../images/contact-bg.jpg') no-repeat center center/cover;
    position: relative;
    color: var(--white);
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 134, 222, 0.9);
    z-index: 1;
}

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

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(46, 134, 222, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    color: var(--dark-color);
    margin-top: 2rem;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    margin-bottom: 1rem;
}

.contact-icon {
    flex: 0 0 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-bg);
    color: var(--white);
    border-radius: 50%;
    margin-right: 1rem;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 5rem 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--gradient-bg);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

footer::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--gradient-bg);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

.footer-section {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
    padding: 0 1.5rem;
    text-align: left;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 24px;
    height: 24px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-bg);
    border-radius: 2px;
}

.footer-section.contact-info {
    padding-top: 0;
    margin-top: 0;
}

.footer-section.contact-info h3 {
    margin-top: 0;
    padding-top: 0;
    position: relative;
    top: 0;
}

.footer-section.contact-info ul {
    margin-top: 1.5rem;
}

.footer-section p {
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    margin-top: 0;
}

.footer-section ul {
    margin-top: 0;
    padding-top: 0;
}

.footer-section.links ul, 
.footer-section.contact-info ul, 
.footer-section.newsletter p {
    margin-top: 0.5rem;
}

.footer-section ul li {
    margin-bottom: 1rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    opacity: 0.9;
    position: relative;
    padding-left: 0;
}

.footer-section ul li a::before {
    content: '›';
    position: absolute;
    left: -10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 15px;
    opacity: 1;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-section.contact-info ul li {
    color: var(--white);
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-section.contact-info ul li:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-section.contact-info ul li i {
    margin-right: 12px;
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 3px;
}

.social-links {
    display: flex;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 12px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--gradient-bg);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 94, 98, 0.3);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.footer-menu {
    margin-top: 10px;
}

.footer-menu a {
    color: var(--white);
    text-decoration: none;
    margin: 0 10px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-menu a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 200;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Duyarlı Tasarım */
@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        margin-top: 1rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .feature-box {
        flex-basis: 100%;
    }
    
    /* Show menu toggle on tablets and mobile */
    .menu-toggle {
        display: flex;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    nav {
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: var(--gradient-bg);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        z-index: 100;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        display: none;
    }
    
    nav ul.show {
        display: flex;
        padding: 20px 0;
    }
    
    nav ul li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        width: 100%;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    .hero {
        height: 60vh;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .feature-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
        width: 70px;
        height: 70px;
        flex: 0 0 70px;
        border-radius: 18px;
        font-size: 1.6rem;
    }
    
    .feature-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .feature-icon {
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
        font-size: 1.4rem;
        border-radius: 15px;
    }
    
    .feature-box {
        padding: 1.5rem 1rem;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* İletişim CTA Bölümü */
.cta {
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    color: var(--white);
    text-align: center;
    z-index: 1;
}

.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

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

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta .btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.cta .btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta .animated {
    animation-duration: 1.5s;
}

.cta .floating {
    animation: floating 3s ease-in-out infinite;
}

/* Balon animasyonu */
.cta-balloons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.cta-balloon {
    position: absolute;
    width: 60px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    bottom: -100px;
    animation: riseBalloon 15s linear infinite;
}

.cta-balloon::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 15px;
    background: rgba(255, 255, 255, 0.2);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 5px 5px;
}

.cta-balloon:nth-child(1) {
    left: 10%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.cta-balloon:nth-child(2) {
    left: 30%;
    width: 40px;
    height: 50px;
    animation-duration: 18s;
    animation-delay: 2s;
}

.cta-balloon:nth-child(3) {
    left: 50%;
    animation-duration: 15s;
    animation-delay: 4s;
}

.cta-balloon:nth-child(4) {
    left: 70%;
    width: 45px;
    height: 55px;
    animation-duration: 14s;
    animation-delay: 6s;
}

.cta-balloon:nth-child(5) {
    left: 85%;
    animation-duration: 16s;
    animation-delay: 8s;
}

@keyframes riseBalloon {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-1000px) rotate(20deg);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .cta {
        padding: 4rem 0;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

.animated {
    animation: fadeIn 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Baskılı Balon Bilgi Bölümü */
.balloon-info {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.balloon-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: url('../images/balloon-pattern.png');
    opacity: 0.05;
    z-index: 0;
}

.info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.info-card {
    display: flex;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border-left: 5px solid transparent;
    height: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    align-items: flex-start;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-color);
}

.info-icon {
    flex: 0 0 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: var(--primary-color);
    border-radius: 12px;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(255, 94, 98, 0.15);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    color: var(--white);
    background: var(--gradient-bg);
    transform: rotateY(180deg);
}

.info-content {
    flex: 1;
}

.info-content h3 {
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.info-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-bg);
    border-radius: 2px;
}

.info-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.text-center {
    text-align: center;
}

@media (max-width: 992px) {
    .info-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .info-container {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 5px solid transparent;
    }
    
    .info-card:hover {
        border-left: none;
        border-top: 5px solid var(--primary-color);
    }
    
    .info-icon {
        margin: 0 auto 1.5rem;
    }
    
    .info-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .info-card {
        padding: 1.5rem 1rem;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
        font-size: 1.4rem;
        border-radius: 15px;
    }
}

/* Çalışma Sürecimiz Bölümü */
.workflow {
    background: linear-gradient(to bottom, var(--light-color) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.workflow::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--accent-light);
    opacity: 0.05;
    border-radius: 50%;
    top: 10%;
    left: -200px;
    z-index: -1;
}

.workflow-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.workflow-container::before {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--gradient-bg);
    top: 0;
    bottom: 0;
    left: 30px;
    margin-left: -2px;
    border-radius: 2px;
    z-index: 1;
}

.workflow-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 70px;
}

.workflow-number {
    position: absolute;
    width: 60px;
    height: 60px;
    left: 0;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 94, 98, 0.3);
}

.workflow-content {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.workflow-content::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -12px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid var(--white);
}

.workflow-item:hover .workflow-content {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.workflow-icon {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.workflow-item:hover .workflow-icon {
    background: var(--gradient-bg);
    color: var(--white);
    transform: rotate(360deg);
}

.workflow-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.workflow-content p {
    color: #666;
    line-height: 1.7;
}

.workflow-cta {
    text-align: center;
    max-width: 700px;
    margin: 2rem auto 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.workflow-cta p {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.workflow-cta .btn {
    background: var(--gradient-bg);
    color: var(--white);
    border: none;
}

.workflow-cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 94, 98, 0.4);
}

@media (max-width: 768px) {
    .workflow-container::before {
        left: 20px;
    }
    
    .workflow-item {
        padding-left: 60px;
    }
    
    .workflow-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .workflow-content {
        padding: 1.5rem;
    }
    
    .workflow-content::before {
        top: 20px;
    }
    
    .workflow-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .workflow-content h3 {
        font-size: 1.2rem;
    }
}

@media (min-width: 992px) {
    .workflow-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .workflow-container::before {
        left: 50%;
    }
    
    .workflow-item {
        width: 50%;
        padding-left: 0;
    }
    
    .workflow-item:nth-child(odd) {
        padding-right: 50px;
        margin-left: 0;
        text-align: right;
    }
    
    .workflow-item:nth-child(even) {
        padding-left: 50px;
        margin-left: 50%;
    }
    
    .workflow-item:nth-child(odd) .workflow-number {
        right: -30px;
        left: auto;
    }
    
    .workflow-item:nth-child(even) .workflow-number {
        left: -30px;
    }
    
    .workflow-item:nth-child(odd) .workflow-content::before {
        left: auto;
        right: -12px;
        border-right: none;
        border-left: 12px solid var(--white);
    }
    
    .workflow-item:nth-child(odd) .workflow-icon {
        margin-left: auto;
    }
    
    .workflow-item:nth-child(odd):hover .workflow-content {
        transform: translateX(-10px);
    }
}

/* Arka plan balon animasyonu */
.balloon-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.balloon {
    position: absolute;
    width: 40px;
    height: 50px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0.1);
    animation: float-balloon 20s linear infinite, sway-balloon 5s ease-in-out infinite alternate;
    opacity: 0.6;
    z-index: -1;
}

.balloon::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 30px;
    background: rgba(0, 0, 0, 0.2);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes float-balloon {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-200px) translateX(var(--drift-x, 100px));
        opacity: 0;
    }
}

@keyframes sway-balloon {
    0% {
        transform: translateX(0) rotate(-5deg);
    }
    50% {
        transform: translateX(var(--sway-amount, 30px)) rotate(5deg);
    }
    100% {
        transform: translateX(calc(var(--sway-amount, 30px) * -1)) rotate(-5deg);
    }
}

.footer-logo {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-logo img {
    max-height: 70px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

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

.footer-section.contact-info ul li span {
    display: inline-block;
    vertical-align: top;
}

.footer-section.newsletter p {
    margin-bottom: 1.2rem;
}

.newsletter-form {
    display: flex;
    position: relative;
    max-width: 350px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 94, 98, 0.1);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 42px;
    border: none;
    background: var(--gradient-bg);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 94, 98, 0.3);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 1rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0.8rem;
}

.footer-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-menu a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-menu a:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -15px;
    opacity: 0.5;
}

.footer-menu a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.footer-balloon {
    position: absolute;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: var(--gradient-bg);
    opacity: 0.05;
    z-index: 0;
}

.footer-balloon.balloon-1 {
    width: 200px;
    height: 250px;
    top: 20%;
    right: -100px;
}

.footer-balloon.balloon-2 {
    width: 150px;
    height: 180px;
    bottom: 30%;
    left: -70px;
}

.footer-balloon.balloon-3 {
    width: 100px;
    height: 120px;
    bottom: 10%;
    right: 10%;
}

@media (max-width: 768px) {
    .footer-logo {
        margin-bottom: 2rem;
    }
    
    .footer-logo img {
        max-height: 60px;
    }
    
    .footer-section {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .footer-bottom {
        padding: 1.2rem 0;
    }
    
    .footer-menu a {
        margin: 0 10px;
    }
    
    .footer-menu a:not(:last-child)::after {
        right: -10px;
    }
}

/* Sayfa Başlığı Bölümü */
.page-header {
    background: var(--gradient-bg);
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Hakkımızda Bölümü */
.about-section {
    padding: 5rem 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-image:hover::before {
    top: -10px;
    left: -10px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--gradient-bg);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    line-height: 1.8;
}

/* Değerlerimiz Bölümü */
.values-section {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 94, 98, 0.1) 0%, rgba(255, 94, 98, 0) 70%);
    border-radius: 50%;
}

.values-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 134, 222, 0.1) 0%, rgba(46, 134, 222, 0) 70%);
    border-radius: 50%;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.value-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-bg);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: rotateY(180deg);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.value-item p {
    color: #6c757d;
    line-height: 1.7;
}

/* Ekibimiz Bölümü */
.team-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-member {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.member-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.member-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-image::after {
    opacity: 1;
}

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

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.member-info .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-info .description {
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    background: #f5f5f5;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background: var(--gradient-bg);
    color: var(--white);
    transform: translateY(-3px);
}

/* Tarihçe Bölümü */
.timeline-section {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 153, 102, 0.1) 0%, rgba(255, 153, 102, 0) 70%);
    border-radius: 50%;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 1rem 40px;
    box-sizing: border-box;
    clear: both;
}

.timeline-item:nth-child(odd) {
    float: left;
    text-align: right;
}

.timeline-item:nth-child(even) {
    float: right;
    text-align: left;
}

.timeline-year {
    position: absolute;
    top: 0;
    width: 150px;
    padding: 0.5rem 1rem;
    background: var(--gradient-bg);
    color: var(--white);
    text-align: center;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -75px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -75px;
}

.timeline-content {
    padding: 20px 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    margin-top: 40px;
    transition: all 0.3s ease;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--white);
    top: 20px;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) {
        float: none;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) {
        float: none;
    }
    
    .timeline-year {
        width: auto;
        font-size: 0.9rem;
        padding: 0.3rem 0.8rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        left: 0;
        right: auto;
        top: 20px;
    }
    
    .timeline-content {
        margin-top: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -10px;
        right: auto;
    }
    
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-image::before {
        display: none;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .value-item,
    .team-member {
        transform: none !important;
    }
}

/* Animasyon İçin Delay Sınıfları (Delay-5 Ekle) */
.delay-5 { animation-delay: 1s; }

/* Avantajlar Bölümü */
.advantages-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 6rem;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 94, 98, 0.08) 0%, rgba(255, 94, 98, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.advantages-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 134, 222, 0.08) 0%, rgba(46, 134, 222, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Testimonials Bölümü Stilleri */
.testimonials-section {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.testimonial-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    padding: 2rem;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(255, 94, 98, 0.1);
    line-height: 1;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    color: #555;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.author-info p {
    margin: 0;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-item {
        max-width: 100%;
    }
}

/* İletişim Sayfası Stilleri */
.contact-page-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.contact-info-box,
.contact-form-box {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info-box h2,
.contact-form-box h2 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.contact-info-box h2::after,
.contact-form-box h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-bg);
    border-radius: 2px;
}

.contact-info-box p,
.contact-form-box p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 2.5rem;
}

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

.contact-text {
    flex: 1;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-text p {
    margin-bottom: 0.3rem;
    color: #666;
}

.social-links-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(46, 134, 222, 0.2);
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check-input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.form-check-label {
    font-size: 0.9rem;
    color: #666;
}

/* Harita Bölümü */
.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

/* SSS Bölümü */
.faq-section {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin: 0;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-toggle {
    background: var(--gradient-bg);
    color: var(--white);
    transform: rotate(180deg);
}

/* İnline Bülten Formu */
.newsletter-form-inline {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form-inline input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form-inline .btn {
    border-radius: 0 30px 30px 0;
    padding: 0.8rem 1.5rem;
    margin-left: -10px;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .contact-info-box,
    .contact-form-box {
        padding: 2rem 1.5rem;
    }
    
    .newsletter-form-inline {
        flex-direction: column;
    }
    
    .newsletter-form-inline input {
        border-radius: 30px;
        margin-bottom: 1rem;
    }
    
    .newsletter-form-inline .btn {
        border-radius: 30px;
        margin-left: 0;
    }
}

/* Sosyal Medya Butonları */
.social-media-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
    max-width: 500px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-button i {
    margin-right: 10px;
    font-size: 18px;
}

.social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-button.facebook {
    background-color: #3b5998;
}

.social-button.twitter {
    background-color: #1da1f2;
}

.social-button.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-button.whatsapp {
    background-color: #25d366;
}

@media (max-width: 768px) {
    .social-media-buttons {
        grid-template-columns: 1fr;
    }
    
    .social-button {
        width: 100%;
    }
}

/* Markalar Grid Bölümü */
.brands-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.brand-item {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.brand-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 94, 98, 0.2);
}

.brand-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-item:hover .brand-logo img {
    transform: scale(1.1);
}

.brand-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.brand-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Etkinlik Galerisi */
.gallery-section {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-info {
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Gallery */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .brand-logo {
        height: 100px;
    }
    
    .brand-logo img {
        max-height: 80px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* WhatsApp Butonu Stilleri */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    animation: whatsapp-pulse 1.5s infinite;
}

.whatsapp-float i {
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    color: #fff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.3);
    animation-play-state: paused;
}

.whatsapp-float:hover i {
    transform: rotate(10deg);
}

.whatsapp-tooltip {
    position: absolute;
    right: 78px;
    background-color: #fff;
    color: #333;
    border-radius: 6px;
    padding: 10px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s;
    width: max-content;
    white-space: nowrap;
}

.whatsapp-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Google Reviews Styles */
.testimonials .container {
    max-width: 100%;
    width: 95%;
    overflow: visible;
}

.google-reviews-container {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
    overflow: visible;
    max-width: 100%;
}

.google-rating-summary {
    flex: 0 0 320px;
    background: transparent;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: none;
    border: none;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.google-rating-summary:hover {
    transform: none;
    box-shadow: none;
}

.rating-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rating-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.stars-display {
    margin-bottom: 0.8rem;
}

.stars-display i {
    color: #ffc107;
    font-size: 1.3rem;
    margin: 0 2px;
}

.rating-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.google-logo {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.google-reviews-slider {
    flex: 1;
    position: relative;
    overflow: visible;
    border-radius: 15px;
    min-width: 0;
}

.testimonials {
    overflow: visible;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    min-width: 100%;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.google-review-card {
    flex: 0 0 320px;
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    min-height: 200px;
}

.google-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin-right: 12px;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0 0 4px 0;
}

.review-date {
    font-size: 0.85rem;
    color: #666;
}

.google-icon {
    color: #4285f4;
    font-size: 1.2rem;
}

.review-stars {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 2px;
}

.review-stars i.fas.fa-star {
    color: #ffc107;
    font-size: 0.9rem;
}

.review-stars i.verified {
    color: #4285f4;
    font-size: 0.8rem;
    margin-left: 8px;
}

.review-text p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.read-more {
    color: #4285f4;
    font-size: 0.85rem;
    cursor: pointer;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* Mobile-only cards - masaüstü görünümde gizle */
@media (min-width: 993px) {
    .google-review-card.mobile-only {
        display: none;
    }
}

/* Responsive Google Reviews */
@media (max-width: 992px) {
    .google-reviews-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .google-rating-summary {
        flex: none;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .reviews-track {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        overflow: visible;
        padding: 1rem 0;
    }
    
    .google-review-card {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .testimonials .container {
        width: 95%;
        max-width: 100%;
    }
    
    .google-reviews-container {
        margin: 2rem 0;
        gap: 1.5rem;
    }
    
    .google-rating-summary {
        padding: 1.5rem;
        max-width: 400px;
    }
    
    .rating-info h3 {
        font-size: 1.5rem;
    }
    
    .reviews-track {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        overflow: visible;
        padding: 1rem 0;
    }
    
    .google-review-card {
        flex: none;
        width: 100%;
        max-width: 100%;
        padding: 1.2rem;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .google-rating-summary {
        padding: 1.2rem;
        max-width: 100%;
    }
    
    .rating-info h3 {
        font-size: 1.4rem;
    }
    
    .stars-display i {
        font-size: 1.2rem;
    }
    
    .google-review-card {
        padding: 1rem;
        min-height: auto;
    }
    
    .reviewer-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .reviewer-info h4 {
        font-size: 0.95rem;
    }
    
    .review-text p {
        font-size: 0.9rem;
    }
}

/* Öne Çıkan Görsel Bölümü */
.featured-image-container {
    position: relative;
    max-width: 900px;
    margin: 2rem auto 4rem;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.featured-image-container::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 2px solid transparent;
    border-image: var(--gradient-bg);
    border-image-slice: 1;
    border-radius: 25px;
    pointer-events: none;
    z-index: 3;
}

.featured-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 25px;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.featured-image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: var(--white);
    text-align: center;
    transition: all 0.4s ease;
    border-radius: 0 0 25px 25px;
}

.featured-image-container:hover .image-overlay {
    background: linear-gradient(to top, rgba(255, 94, 98, 0.9) 0%, rgba(255, 153, 102, 0.7) 100%);
    padding-bottom: 2.5rem;
}

.overlay-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.overlay-content .btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

.overlay-content .btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid var(--white);
}

@media (max-width: 768px) {
    .featured-image-container {
        border-radius: 15px;
        margin: 1rem auto 2rem;
    }
    
    .featured-image-container::before,
    .featured-image {
        border-radius: 15px;
    }
    
    .image-overlay {
        padding: 1.5rem;
        border-radius: 0 0 15px 15px;
    }
    
    .overlay-content h2 {
        font-size: 1.5rem;
    }
    
    .overlay-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .featured-image-container {
        border-radius: 12px;
    }
    
    .featured-image-container::before,
    .featured-image {
        border-radius: 12px;
    }
    
    .image-overlay {
        padding: 1.2rem;
        border-radius: 0 0 12px 12px;
    }
    
    .overlay-content h2 {
        font-size: 1.3rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }
}
