/* Modern Color Scheme - Yeşil Tema */
:root {
    --modern-primary: #2e7d32;
    --modern-secondary: #4caf50;
    --modern-accent: #66bb6a;
    --modern-light: #a5d6a7;
    --modern-dark: #1b5e20;
    --modern-bg: #f1f8e9;
    --modern-card: #ffffff;
    --modern-text: #2e2e2e;
    --modern-text-light: #757575;
}

/* Sayfa Başlığı */
.page-header {
    background: linear-gradient(135deg, var(--modern-primary) 0%, var(--modern-dark) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
}

.breadcrumbs {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumbs a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--modern-accent);
}

.breadcrumbs span {
    color: var(--modern-accent);
    font-weight: 600;
}

.page-title-section {
    position: relative;
}

.section-title-outline {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.08);
    text-stroke: 2px rgba(255,255,255,0.08);
    pointer-events: none;
    user-select: none;
    z-index: 1;
    white-space: nowrap;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.page-header p {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.95;
    font-weight: 400;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Dekoratif Şekiller */
.header-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.decoration-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    top: 20%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: var(--modern-secondary);
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    left: 15%;
    width: 40px;
    height: 40px;
    background: var(--modern-secondary);
    transform: rotate(45deg);
    animation-delay: 2s;
}

.shape-3 {
    top: 30%;
    left: 20%;
    width: 30px;
    height: 30px;
    border: 3px solid var(--modern-secondary);
    border-radius: 50%;
    animation-delay: 4s;
}

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

/* Premium İletişim Bölümü */
.contact-section-premium {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f1f8f7 50%, #e8f5e8 100%);
    position: relative;
    overflow: hidden;
}

.premium-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.premium-bg-image {
    position: absolute;
    opacity: 0.12;
    border-radius: 30px;
    overflow: hidden;
    filter: brightness(1.2) contrast(1.1) saturate(1.1);
    box-shadow: 0 25px 80px rgba(0,0,0,0.25);
}

.premium-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-bg-1 {
    top: 5%;
    right: 1%;
    width: 320px;
    height: 420px;
    transform: rotate(10deg);
    animation: float 10s ease-in-out infinite, premiumGlow 6s ease-in-out infinite alternate;
}

.premium-bg-2 {
    bottom: 8%;
    left: 3%;
    width: 280px;
    height: 360px;
    transform: rotate(-8deg);
    animation: float 10s ease-in-out infinite reverse, premiumGlow 6s ease-in-out infinite alternate;
    animation-delay: 3s;
}

@keyframes premiumGlow {
    0% { 
        box-shadow: 0 25px 80px rgba(0,0,0,0.25), 
                   0 0 50px rgba(76, 175, 80, 0.3);
    }
    100% { 
        box-shadow: 0 35px 100px rgba(0,0,0,0.35), 
                   0 0 80px rgba(76, 175, 80, 0.5);
    }
}

.floating-element {
    position: absolute;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.premium-section-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--modern-secondary), transparent);
}

.decoration-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--modern-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.premium-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.title-main {
    color: var(--modern-primary);
    display: block;
}

.title-highlight {
    background: linear-gradient(135deg, var(--modern-secondary), var(--modern-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--modern-secondary), var(--modern-primary));
    border-radius: 2px;
}

.premium-description {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* İletişim Bilgi Kartları */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(76, 175, 80, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out both;
    text-align: center;
}

.contact-info-card[data-delay="0.1"] { animation-delay: 0.1s; }
.contact-info-card[data-delay="0.2"] { animation-delay: 0.2s; }
.contact-info-card[data-delay="0.3"] { animation-delay: 0.3s; }
.contact-info-card[data-delay="0.4"] { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(46, 125, 50, 0.15);
    border-color: var(--modern-secondary);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-info-card:hover .card-background {
    opacity: 1;
}

.card-pattern {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(46, 125, 50, 0.03) 0%, transparent 50%);
}

.contact-icon-premium {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--modern-secondary), var(--modern-primary));
    border-radius: 22px;
    transition: all 0.5s ease;
}

.contact-icon-premium i {
    font-size: 2.2rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.contact-info-card:hover .icon-bg {
    transform: rotate(10deg) scale(1.1);
}

.contact-info-card:hover .contact-icon-premium i {
    transform: scale(1.2);
}

.contact-info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--modern-primary);
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
}

.contact-info-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.contact-info-card a {
    color: var(--modern-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--modern-primary);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.contact-info-card:hover .card-glow {
    opacity: 1;
}

/* İletişim Aksiyon Bölümü */
.contact-action-section {
    position: relative;
    z-index: 2;
}

.action-content {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 255, 254, 0.95));
    backdrop-filter: blur(20px);
    padding: 60px 40px;
    border-radius: 30px;
    border: 1px solid rgba(76, 175, 80, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.action-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--modern-primary);
    margin-bottom: 15px;
}

.action-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.action-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-btn.primary {
    background: linear-gradient(135deg, var(--modern-secondary), var(--modern-primary));
    color: white;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.premium-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.4);
}

.premium-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.premium-btn.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.premium-btn.secondary {
    background: white;
    color: var(--modern-primary);
    border: 2px solid var(--modern-secondary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.premium-btn.secondary:hover {
    background: var(--modern-secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.25);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-section-premium {
        padding: 80px 0;
    }

    .premium-title {
        font-size: 2.5rem;
    }

    .premium-description {
        font-size: 1.1rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .premium-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .page-header {
        padding: 100px 0 60px;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .page-header p {
        font-size: 1.2rem;
    }

    .section-title-outline {
        font-size: 12vw;
    }

    .premium-bg-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .premium-section-header {
        margin-bottom: 60px;
    }

    .premium-title {
        font-size: 2rem;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .action-content {
        padding: 40px 20px;
    }

    .action-content h3 {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .decoration-shape {
        display: none;
    }
}