/*
Theme Name: Satellite Stars
Theme URI: https://satellitestars.theme/
Description: Modern, fully customizable theme for service businesses. Perfect for satellite, TV installation, technical services, electricians, plumbers and more. 100% customizable via Customizer - no coding required! Gradient effects, modern animations, SEO optimized professional theme.
Author: Satellite Stars Team
Author URI: https://satellitestars.theme/
Version: 6.1.0
Requires at least: 6.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: satellite-stars
Tags: business, service, satellite, tv-installation, modern, responsive, seo-optimized, customizable, orange-theme, gradient, professional

Satellite Stars - Multi-Sector Service Business Theme
Complete Privacy Mode - All traces hidden
Copyright (C) 2025 Satellite Stars - Professional Service Business Theme
*/

/* =========================================================================
   CUSTOM PROPERTIES & CSS VARIABLES (BLUE THEME)
========================================================================= */
:root {
    /* Brand Colors - Blue Focus */
    --color-primary: #FF6B00;
    --color-primary-light: #FF8534;
    --color-primary-dark: #E65100;
    --color-secondary: #FF9800;
    --color-secondary-light: #FFB74D;
    --color-accent: #FFA726;
    --color-accent-light: #FFCC80;
    --color-complementary: #00ACC1;
    
    /* Neutral Colors */
    --color-dark: #1a1a1a;
    --color-gray: #6b7280;
    --color-light: #f9fafb;
    --color-white: #ffffff;
    
    /* Gradients - Dinamik (functions.php'den yüklenir) */
    --gradient-primary: linear-gradient(135deg, #FF6B00 0%, #FF9800 100%);
    --gradient-secondary: linear-gradient(135deg, #FFB74D 0%, #FF6B00 100%);
    --gradient-hero: linear-gradient(135deg, #E65100 0%, #FF6B00 50%, #FF9800 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(255,107,0,0.1), rgba(255,107,0,0.3));
    --gradient-card: linear-gradient(135deg, #ffffff 0%, #fff5e6 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 2.5rem;
    --spacing-2xl: 3rem;
    
    /* Typography */
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
    --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
    
    /* Effects - Dinamik (functions.php'den yüklenir) */
    --shadow-sm: 0 2px 4px 0 rgba(255, 107, 0, 0.1);
    --shadow-md: 0 4px 12px -1px rgba(255, 107, 0, 0.15);
    --shadow-lg: 0 10px 20px -3px rgba(255, 107, 0, 0.2);
    --shadow-xl: 0 20px 35px -5px rgba(255, 107, 0, 0.25);
    --shadow-glow: 0 0 25px rgba(255, 107, 0, 0.4);
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================================
   RESET & BASE STYLES
========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-dark);
    background: linear-gradient(to bottom, #ffffff 0%, #fff8f0 100%);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--color-primary-dark);
}

/* =========================================================================
   TYPOGRAPHY
========================================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--color-dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.75rem, 4vw, 2.25rem); }
h4 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: var(--spacing-sm);
}

/* =========================================================================
   LAYOUT UTILITIES
========================================================================= */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-title h2 {
    color: var(--color-primary);
    font-weight: 800;
}


.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    margin: var(--spacing-sm) auto 0;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-glow);
}

/* =========================================================================
   HEADER & NAVIGATION
========================================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md);
    border-bottom: 3px solid var(--color-primary);
    transition: all var(--transition-base);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem var(--spacing-md);
    max-width: 1280px;
    margin: 0 auto;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo a {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-primary);
}


.main-navigation ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.main-navigation a {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-weight: 600;
    transition: all var(--transition-base);
    border-radius: var(--radius-md);
    position: relative;
}

.main-navigation a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    transition: transform var(--transition-base);
}

.main-navigation a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.main-navigation a:hover {
    color: var(--color-primary);
}

.header-cta {
    background: var(--gradient-primary);
    color: var(--color-white) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: var(--gradient-primary);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: var(--radius-md);
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px auto;
    border-radius: 3px;
    transition: all var(--transition-base);
}

/* =========================================================================
   HERO SECTION (BLUE DOMINANT)
========================================================================= */
.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    color: var(--color-white);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

.hero-title {
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: var(--color-white);
}

.hero-buttons {
    display: inline-flex;
    gap: var(--spacing-sm);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.125rem 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    color: var(--color-primary-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border: 2px solid var(--color-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

/* =========================================================================
   SERVICES GRID (BLUE ACCENT)
========================================================================= */
.services-section {
    background: linear-gradient(to bottom, #ffffff 0%, #fff5e6 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.service-card {
    position: relative;
    padding: var(--spacing-lg);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: var(--spacing-sm);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow);
    animation: float 3s ease-in-out infinite;
}

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

.service-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
    font-weight: 800;
}

.service-description {
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

/* Hizmet açıklamalarındaki vurgular siyah olmalı - tüm olası kombinasyonlar */
.service-card .service-description strong,
.service-card .service-description em,
.service-card .service-description b,
.service-card .service-description i,
.services-section .service-description strong,
.services-section .service-description em,
.services-section .service-description b,
.services-section .service-description i,
.service-description strong,
.service-description em,
.service-description b,
.service-description i,
p.service-description strong,
p.service-description em,
p.service-description b,
p.service-description i {
    color: #000 !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: #000 !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    font-style: normal !important;
}

.service-description strong,
.service-description b {
    font-weight: 700 !important;
}

.service-price,
span.service-price,
.service-card .service-price,
.services-section .service-price {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: #000 !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: #000 !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    text-fill-color: #000 !important;
    margin-top: var(--spacing-xs);
}

/* =========================================================================
   STATS SECTION (BLUE THEME)
========================================================================= */
.stats-section {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.stats-section .section-title h2 {
    color: var(--color-white) !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--color-white) !important;
    background-clip: unset !important;
}

.stats-section .section-title p {
    color: rgba(255,255,255,0.95) !important;
}

.stats-section .section-title::after {
    background: rgba(255,255,255,0.5) !important;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.2)"/></svg>');
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: var(--spacing-xs);
    color: var(--color-white);
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 600;
}

/* =========================================================================
   CTA SECTION
========================================================================= */
.cta-section {
    background: linear-gradient(135deg, #FF6B00 0%, #FF9800 50%, #FFA726 100%);
    color: var(--color-white);
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    border-radius: var(--radius-2xl);
    margin: var(--spacing-xl) auto;
    max-width: 1200px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-section::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%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.cta-title {
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
    font-weight: 900;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
    font-weight: 500;
}

.cta-phone {
    display: inline-block;
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.2);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    border: 3px solid white;
    transition: all var(--transition-base);
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.cta-phone:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: scale(1.05);
}

/* =========================================================================
   FOOTER
========================================================================= */
.site-footer {
    background: linear-gradient(to bottom, #1a1a1a 0%, #0d0d0d 100%);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-widget h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.footer-widget p,
.footer-widget a,
.footer-widget li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-widget a:hover {
    color: var(--color-primary);
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-bottom {
    border-top: 1px solid var(--color-primary);
    padding-top: var(--spacing-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Sosyal Medya İkonları */
.footer-social-icon {
    display: inline-block;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.footer-social-icon.facebook-icon {
    color: #1877F2;
}

.footer-social-icon.instagram-icon {
    color: #E4405F;
}

.footer-social-icon.google-icon {
    color: #4285F4;
}

.footer-social-icon:hover {
    transform: scale(1.2);
}

.footer-social-icon:active {
    transform: scale(1.1);
}

/* =========================================================================
   LARGE CALL BUTTON (BLUE)
========================================================================= */
.large-call-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 0.75rem;
    box-shadow: var(--shadow-xl);
    border-top: 3px solid var(--color-primary);
    display: flex;
    justify-content: center;
}

.btn-large-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    width: 100%;
    max-width: 550px;
    padding: 1.25rem 1.75rem;
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--color-white);
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
}

.btn-large-call:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: var(--color-white);
}

.site-content {
    padding-bottom: 90px;
}

/* =========================================================================
   BLOG & POSTS
========================================================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.post-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.post-thumbnail {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.08);
}

.post-content {
    padding: var(--spacing-md);
}

.post-title {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
}

.post-title a {
    color: var(--color-dark);
    transition: color var(--transition-base);
}

.post-title a:hover {
    color: var(--color-primary);
}

.post-excerpt {
    color: var(--color-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.post-meta {
    display: flex;
    gap: var(--spacing-md);
    font-size: 0.95rem;
    color: var(--color-gray);
    flex-wrap: wrap;
}

.read-more {
    display: inline-block;
    margin-top: var(--spacing-sm);
    color: var(--color-primary);
    font-weight: 700;
    transition: transform var(--transition-base);
}

.read-more:hover {
    transform: translateX(5px);
}

/* =========================================================================
   SINGLE POST STYLES
========================================================================= */
.single-post-container {
    padding: 3rem 1rem;
    min-height: 60vh;
}

.entry-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 4px solid var(--color-primary);
    text-align: center;
}

.entry-title {
    font-size: clamp(2rem, 5vw, 3rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.single-post-content {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.9;
}

/* =========================================================================
   PAGE STYLES
========================================================================= */
.page-container {
    padding: 3rem 1rem;
    min-height: 60vh;
}

.page-entry-header {
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 0;
    border-bottom: none;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.page-content {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #333;
    max-width: 850px;
    margin: 0 auto;
}

/* Social Share Box */
.social-share-box {
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe0b2 100%);
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--color-primary);
}

.social-share-box h3 {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-size: 1.65rem;
}

.social-share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-facebook {
    background: #1877F2;
    color: white;
    font-size: 1.05rem;
}

.btn-facebook:hover {
    background: #0d65d9;
    color: white;
}

.btn-twitter {
    background: #1DA1F2;
    color: white;
    font-size: 1.05rem;
}

.btn-twitter:hover {
    background: #0c85d0;
    color: white;
}

/* Single Post CTA Box */
.single-cta-box {
    background: var(--gradient-primary);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    margin: 2.5rem 0;
    box-shadow: var(--shadow-glow);
}

.single-cta-box h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.85rem;
}

.single-cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
}

.btn-cta-phone {
    background: white;
    color: var(--color-primary);
    font-size: 1.65rem;
    padding: 1.15rem 2.25rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-cta-phone:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    color: var(--color-primary-dark);
}

/* Post Navigation */
.post-navigation {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-previous,
.nav-next {
    flex: 1;
    min-width: 250px;
}

.nav-previous a,
.nav-next a {
    display: block;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe0b2 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-primary);
    transition: all var(--transition-base);
}

.nav-previous a:hover,
.nav-next a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-primary);
}

.nav-previous a:hover .nav-title,
.nav-next a:hover .nav-title,
.nav-previous a:hover .nav-subtitle,
.nav-next a:hover .nav-subtitle {
    color: white;
}

.nav-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
}

.nav-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Entry Content Images - Responsive Fix (content içindeki normal resimler) */
.entry-content img:not(.featured-image img),
.single-post-content img:not(.featured-image img),
.page-content img:not(.featured-image img) {
    max-width: 500px !important;
    height: auto !important;
    width: 100% !important;
    display: block;
    margin: 1.5rem auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Desktop - Content içindeki resimler daha küçük */
@media (min-width: 769px) {
    .entry-content img:not(.featured-image img),
    .single-post-content img:not(.featured-image img),
    .page-content img:not(.featured-image img) {
        max-width: 420px !important;
    }
}

@media (min-width: 1025px) {
    .entry-content img:not(.featured-image img),
    .single-post-content img:not(.featured-image img),
    .page-content img:not(.featured-image img) {
        max-width: 380px !important;
    }
}

@media (min-width: 1441px) {
    .entry-content img:not(.featured-image img),
    .single-post-content img:not(.featured-image img),
    .page-content img:not(.featured-image img) {
        max-width: 350px !important;
    }
}

.entry-content figure,
.single-post-content figure,
.page-content figure {
    max-width: 100% !important;
    margin: 1.5rem 0;
}

.entry-content figure img,
.single-post-content figure img,
.page-content figure img {
    margin: 0 auto;
}

/* Featured Image - Optimized for Desktop (YÜKSEK ÖNCELİK) */
.featured-image-wrapper {
    display: flex;
    justify-content: center;
    margin: var(--spacing-lg) 0;
}

.featured-image {
    max-width: 500px;
    width: 100%;
}

/* Featured image resimleri için en yüksek öncelik */
.entry-content .featured-image img,
.page-content .featured-image img,
.single-post-content .featured-image img,
.featured-image img,
.featured-image .wp-post-image {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    max-width: none !important;
}

/* Desktop Optimization - Tablet */
@media (min-width: 769px) {
    .featured-image {
        max-width: 420px;
    }
}

/* Desktop Optimization - Desktop */
@media (min-width: 1025px) {
    .featured-image {
        max-width: 380px;
    }
}

/* Desktop Optimization - Extra Large */
@media (min-width: 1441px) {
    .featured-image {
        max-width: 350px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .featured-image {
        max-width: 100%;
    }
    
    .entry-content img,
    .single-post-content img {
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* =========================================================================
   ANIMATIONS
========================================================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================================
   RESPONSIVE DESIGN
========================================================================= */
@media (max-width: 768px) {
    .main-navigation {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        transition: left var(--transition-base);
        padding: var(--spacing-lg);
        border-top: 3px solid var(--color-primary);
    }
    
    .main-navigation.active {
        left: 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .main-navigation a {
        display: block;
        padding: var(--spacing-md);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-large-call {
        font-size: 1.5rem;
        padding: 1.25rem 1.5rem;
    }
}


@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section {
        padding: var(--spacing-xl) 0;
    }
}

/* =========================================================================
   REVIEWS SECTION
========================================================================= */
.reviews-section {
    background: linear-gradient(135deg, #FFF5EE 0%, #FFF8F0 100%);
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
}

.reviews-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.reviews-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.review-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.review-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.review-info {
    flex: 1;
}

.review-author {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
    color: var(--color-text-dark);
    font-weight: 600;
}

.review-stars {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    letter-spacing: 2px;
}

.review-date {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.review-text {
    flex: 1;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0 0 1.5rem 0;
    font-size: 0.95rem;
}

.review-platform {
    display: flex;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    margin-top: auto;
}

.review-platform img {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.review-platform span {
    color: #5f6368;
    font-size: 0.9rem;
}

/* Navigation Arrows */
.review-nav,
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.review-nav:hover,
.carousel-prev:hover,
.carousel-next:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.review-prev,
.carousel-prev {
    left: 0;
}

.review-next,
.carousel-next {
    right: 0;
}

/* Dots Navigation */
.review-dots,
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.review-dot,
.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.review-dot:hover,
.carousel-dot:hover {
    background: var(--color-primary-light);
    transform: scale(1.2);
}

.review-dot.active,
.carousel-dot.active {
    background: var(--gradient-primary);
    width: 32px;
    border-radius: 6px;
    border-color: var(--color-primary);
}

/* Reviews Footer */
.reviews-footer {
    text-align: center;
    margin-top: 2rem;
}

.reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Review Summary Stats */
.review-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-border);
}

.review-stat-item {
    text-align: center;
}

.review-stat-item .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.review-stat-item .stat-label {
    display: block;
    color: var(--color-text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* CTA Address */
.cta-address {
    margin-top: 2rem;
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .reviews-carousel {
        padding: 0 50px;
    }
    
    .review-card {
        flex: 0 0 100%;
        min-height: 250px;
    }
    
    .review-nav {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .review-dots {
        gap: 0.5rem;
    }
    
    .review-dot {
        width: 10px;
        height: 10px;
    }
    
    .review-dot.active {
        width: 28px;
    }
}

@media (max-width: 480px) {
    .reviews-carousel {
        padding: 0 40px;
    }
    
    .review-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .review-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .review-header {
        gap: 0.75rem;
    }
    
    .review-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .review-author {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
}

/* =========================================================================
   UTILITY CLASSES
========================================================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* =========================================================================
   COOKIES CONSENT BAR
========================================================================= */
.cookies-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary, linear-gradient(135deg, #FF6B00 0%, #FF9800 100%));
    color: #ffffff;
    padding: 1.25rem 1rem;
    box-shadow: 0 -4px 20px rgba(255, 107, 0, 0.4);
    z-index: 999999;
    border-top: 3px solid var(--color-primary, #FF6B00);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookies-bar-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookies-text {
    flex: 1;
}

.cookies-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookies-text strong {
    color: #ffffff;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cookies-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookies-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    min-width: 120px;
}

.cookies-accept {
    background: #ffffff;
    color: var(--color-primary, #FF6B00);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

.cookies-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
    background: #f0f0f0;
}

.cookies-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookies-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .cookies-bar {
        padding: 1rem 0.75rem;
    }
    
    .cookies-bar-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookies-text p {
        font-size: 0.875rem;
    }
    
    .cookies-text strong {
        font-size: 1rem;
    }
    
    .cookies-buttons {
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookies-btn {
        width: 100%;
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .cookies-bar-content {
        gap: 1rem;
    }
    
    .cookies-btn {
        min-width: 100px;
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Print için gizle */
@media print {
    .cookies-bar {
        display: none !important;
    }
}

/* =========================================================================
   DESKTOP OPTIMIZATIONS (LARGE SCREENS)
========================================================================= */
@media (min-width: 1025px) {
    /* Daha kompakt spacing değerleri masaüstü için */
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 2.5rem;
    }
    
    /* Hero section daha kompakt */
    .hero-section {
        min-height: 55vh;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(2.25rem, 4vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 2vw, 1.35rem);
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 1.1rem;
    }
    
    /* Section başlıkları daha kompakt */
    .section-title {
        margin-bottom: 2rem;
    }
    
    .section-title h2 {
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        margin-bottom: 0.75rem;
    }
    
    /* Service card'lar daha kompakt */
    .service-card {
        padding: 1.75rem;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .service-title {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
    }
    
    .service-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .service-price {
        font-size: 1.25rem;
    }
    
    /* Stats daha kompakt */
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.75rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    /* CTA daha kompakt */
    .cta-title {
        font-size: clamp(1.85rem, 3.5vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .cta-text {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-phone {
        font-size: 2rem;
        padding: 0.875rem 1.75rem;
    }
    
    /* Blog kartları daha kompakt */
    .post-thumbnail {
        height: 220px;
    }
    
    .post-content {
        padding: 1.5rem;
    }
    
    .post-title {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
    }
    
    .post-excerpt {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Büyük arama butonu daha kompakt */
    .btn-large-call {
        padding: 1.25rem 1.75rem;
        font-size: 1.65rem;
        max-width: 550px;
    }
    
    .site-content {
        padding-bottom: 90px;
    }
    
    /* Grid sistemleri daha efektif kullan */
    .services-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .blog-grid {
        gap: 1.75rem;
        margin-top: 2rem;
    }
    
    /* Single Post daha kompakt */
    .single-post-container {
        padding: 2.5rem 1rem;
    }
    
    .entry-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1.25rem;
    }
    
    .entry-title {
        font-size: clamp(1.85rem, 4vw, 2.5rem);
    }
    
    /* Page daha kompakt */
    .page-container {
        padding: 2.5rem 1rem;
    }
    
    .page-title {
        font-size: clamp(1.85rem, 4vw, 2.5rem);
    }
    
    .social-share-box {
        margin: 2rem 0;
        padding: 1.75rem;
    }
    
    .social-share-box h3 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .btn-facebook,
    .btn-twitter {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .single-cta-box {
        padding: 2rem;
        margin: 2rem 0;
    }
    
    .single-cta-box h3 {
        font-size: 1.65rem;
        margin-bottom: 0.875rem;
    }
    
    .single-cta-box p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-cta-phone {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }
}

/* Extra Large Screens - Çok büyük ekranlarda daha da kompakt */
@media (min-width: 1441px) {
    :root {
        --spacing-xl: 1.75rem;
        --spacing-2xl: 2.25rem;
    }
    
    .hero-section {
        min-height: 50vh;
    }
    
    .hero-content {
        padding: 1.75rem 1.5rem;
    }
    
    .container {
        max-width: 1200px;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    /* Single Post ekstra kompakt */
    .single-post-container {
        padding: 2rem 1rem;
    }
    
    .entry-title {
        font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    }
    
    /* Page ekstra kompakt */
    .page-container {
        padding: 2rem 1rem;
    }
    
    .page-title {
        font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    }
    
    .social-share-box {
        margin: 1.75rem 0;
        padding: 1.5rem;
    }
    
    .social-share-box h3 {
        font-size: 1.4rem;
    }
    
    .single-cta-box {
        padding: 1.75rem;
        margin: 1.75rem 0;
    }
    
    .single-cta-box h3 {
        font-size: 1.5rem;
    }
    
    .single-cta-box p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .btn-cta-phone {
        font-size: 1.4rem;
        padding: 0.875rem 1.75rem;
    }
}

/* =========================================================================
   STICKY CALL BUTTONS (Yapışkan Telefon ve WhatsApp Butonları)
   Customizer'dan yönetilebilir 2 butonlu alt bar
========================================================================= */
.large-call-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    z-index: 9999;
    animation: slideInUp 0.5s ease-out;
}

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

.btn-large-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 0 1 auto;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-large-call::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-large-call:hover::before {
    width: 400px;
    height: 400px;
}

.btn-large-call .btn-icon {
    font-size: 24px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.btn-large-call .btn-text {
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

/* Telefon Butonu - Site Rengi (Dinamik) */
.btn-large-call.btn-phone {
    background: var(--gradient-primary, linear-gradient(135deg, #FF6B00 0%, #FF9800 100%));
}

.btn-large-call.btn-phone:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.btn-large-call.btn-phone:active {
    transform: scale(0.98);
}

/* WhatsApp Butonu - Yeşil (Sabit) */
.btn-large-call.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.btn-large-call.btn-whatsapp:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.btn-large-call.btn-whatsapp:active {
    transform: scale(0.98);
}

/* Pulse Animation (Dikkat Çekici) */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15), inset 0 0 40px rgba(255, 255, 255, 0.4);
    }
}

.btn-large-call.btn-phone {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulseWhatsApp {
    0%, 100% {
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15), inset 0 0 40px rgba(255, 255, 255, 0.4);
    }
}

.btn-large-call.btn-whatsapp {
    animation: pulseWhatsApp 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .btn-large-call {
        padding: 16px 20px;
        font-size: 15px;
        gap: 10px;
    }
    
    .btn-large-call .btn-icon {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .btn-large-call {
        padding: 14px 16px;
        font-size: 14px;
        gap: 8px;
    }
    
    .btn-large-call .btn-icon {
        font-size: 20px;
    }
    
    .btn-large-call .btn-text {
        font-size: 13px;
    }
}

    }
}