/* Custom Agency Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --primary: #FF6B35;
    --secondary: #0F172A;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Section Gradients */
.hero-gradient {
    background: radial-gradient(circle at top right, rgba(255, 107, 53, 0.1), transparent),
                radial-gradient(circle at bottom left, rgba(0, 217, 255, 0.05), transparent);
}

/* Button Glow */
.btn-glow:hover {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

/* Magnetic Button Effect Simulation */
.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.magnetic-btn:hover {
    transform: scale(1.05);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8A5C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card Shine Effect */
.shine-card {
    position: relative;
    overflow: hidden;
}
.shine-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.75s;
}
.shine-card:hover::before {
    left: 125%;
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.animate-float-slow {
    animation: float 6s ease-in-out infinite;
}

/* Blog Content Links */
.blog-content a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}
.blog-content a:hover {
    color: var(--secondary);
    text-decoration-color: var(--secondary);
}

/* Image Reveal Effect */
.reveal-img {
    position: relative;
    overflow: hidden;
}
.reveal-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: translateX(-101%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.reveal-img:hover::after {
    transform: translateX(101%);
}

/* Pricing Card Special */
.pricing-popular {
    border: 2px solid var(--primary);
    position: relative;
}
.pricing-popular::before {
    content: 'EN POPÜLER';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
}
