/*
Theme Name: Uyducu Adana
Theme URI: https://uyducuadana.com
Description: Profesyonel, modern, AMP destekli tema - Adana Uydu Servisi. Gradient efektler, glassmorphism, paralaks animasyonlar ve Google 2025 SEO optimize.
Author: Deniz Elektronik
Author URI: https://uyducuadana.com
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: uyducu-adana
Tags: satellite-services, modern, responsive, amp, seo-optimized, gradient, glassmorphism

Uyducu Adana - Premium WordPress Theme
Copyright (C) 2025 Deniz Elektronik
*/

/* =========================================================================
   CUSTOM PROPERTIES & CSS VARIABLES
========================================================================= */
:root {
    /* Brand Colors */
    --color-primary: #1E3A8A;
    --color-primary-light: #3B82F6;
    --color-primary-dark: #1E40AF;
    --color-secondary: #FF6B35;
    --color-secondary-light: #F7931E;
    --color-accent: #FDB813;
    --color-accent-light: #FFD700;
    
    /* Neutral Colors */
    --color-dark: #1a1a1a;
    --color-gray: #6b7280;
    --color-light: #f9fafb;
    --color-white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --gradient-hero: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 50%, #8B5CF6 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 30px rgba(253, 184, 19, 0.4);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-dark);
    background: var(--color-white);
    overflow-x: hidden;
}

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

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

p {
    margin-bottom: var(--spacing-md);
    color: var(--color-gray);
}

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

a:hover {
    color: var(--color-secondary);
}

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

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

.container-narrow {
    max-width: 960px;
}

.container-wide {
    max-width: 1440px;
}

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

.fw-bold { font-weight: 700; }
.fw-black { font-weight: 900; }

/* Spacing Utilities */
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.py-1 { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-2 { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-3 { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.py-4 { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }
.py-5 { padding-top: var(--spacing-2xl); padding-bottom: var(--spacing-2xl); }
.py-6 { padding-top: var(--spacing-3xl); padding-bottom: var(--spacing-3xl); }

/* =========================================================================
   HEADER & NAVIGATION
========================================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
}

.site-logo {
    font-size: 1.75rem;
    font-weight: 900;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition-base);
}

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

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    margin: 0;
}

.nav-menu a {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-dark);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    position: relative;
    transition: all var(--transition-base);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transform: translateX(-50%);
    transition: width var(--transition-base);
}

.nav-menu a:hover::before,
.nav-menu .current-menu-item a::before {
    width: 80%;
}

.nav-menu a:hover {
    color: var(--color-secondary);
    transform: translateY(-2px);
}

/* CTA Button in Header */
.header-cta {
    background: var(--gradient-secondary);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-bounce);
}

.header-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    color: var(--color-white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--color-dark);
    margin: 5px 0;
    transition: all var(--transition-base);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* =========================================================================
   HERO SECTION
========================================================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Animated Background */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    text-align: center;
    color: var(--color-white);
    z-index: 2;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    line-height: 1.1;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    color: rgba(255,255,255,0.95);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-bounce);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--color-white);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    color: var(--color-white);
}

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

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-5px);
    color: var(--color-white);
}

.btn-icon {
    font-size: 1.5rem;
    margin-right: var(--spacing-xs);
}

/* =========================================================================
   FEATURES / SERVICES SECTION
========================================================================= */
.features-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-light);
    position: relative;
}

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

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: var(--gradient-secondary);
    margin: var(--spacing-md) auto 0;
    border-radius: var(--radius-sm);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.feature-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    transition: all var(--transition-base);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.feature-card p {
    color: var(--color-gray);
    line-height: 1.7;
}

.feature-price {
    display: inline-block;
    background: var(--gradient-secondary);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

/* =========================================================================
   STATS SECTION
========================================================================= */
.stats-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gradient-primary);
    color: var(--color-white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.stat-item {
    animation: fadeInUp 0.8s ease-out;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    display: block;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #FDB813, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.25rem;
    opacity: 0.95;
    color: rgba(255,255,255,0.95);
}

/* =========================================================================
   CTA SECTION
========================================================================= */
.cta-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gradient-hero);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '📞';
    position: absolute;
    font-size: 300px;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
}

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

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.cta-phone {
    display: inline-block;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--color-accent);
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin: var(--spacing-lg) 0;
    transition: all var(--transition-base);
}

.cta-phone:hover {
    transform: scale(1.1);
    color: var(--color-accent-light);
}

/* =========================================================================
   FOOTER
========================================================================= */
.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.8);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

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

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

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

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

.footer-widget a {
    color: rgba(255,255,255,0.7);
    transition: all var(--transition-base);
}

.footer-widget a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

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

/* =========================================================================
   LARGE CALL BUTTON (Bottom Fixed)
========================================================================= */
.large-call-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: var(--spacing-md);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-large-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    width: 100%;
    max-width: 600px;
    padding: 1.25rem 2rem;
    background: var(--gradient-secondary);
    color: var(--color-white);
    font-size: 1.75rem;
    font-weight: 900;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-bounce);
    text-decoration: none;
    border: none;
}

.btn-large-call:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    color: var(--color-white);
}

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

/* Add bottom padding to main content to prevent overlap */
.site-content {
    padding-bottom: 100px;
}

/* =========================================================================
   FLOATING ACTION BUTTONS (Legacy - Hidden)
========================================================================= */
.floating-buttons {
    display: none; /* Large button at bottom is used instead */
}

.float-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-bounce);
    animation: fadeInRight 0.6s ease-out;
}

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

.float-btn:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-xl);
}

.call-btn {
    background: var(--gradient-secondary);
}

/* =========================================================================
   RESPONSIVE DESIGN
========================================================================= */
@media (max-width: 768px) {
    .main-navigation {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100vh);
        transition: transform var(--transition-base);
    }
    
    .main-navigation.active {
        transform: translateY(0);
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .btn-large-call {
        font-size: 1.4rem;
        padding: 1rem 1.5rem;
    }
    
    .large-call-button {
        padding: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
   ACCESSIBILITY
========================================================================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-sm);
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Focus Styles */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
}

/* =========================================================================
   PRINT STYLES
========================================================================= */
@media print {
    .site-header,
    .floating-buttons,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }
}
