/* Kronikey Corporate CSS - Premium Design */

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

/* Color Palette Variables */
:root {
    /* Primary Colors */
    --primary-blue: #1e40af;
    --primary-blue-light: #3b82f6;
    --primary-blue-dark: #1e3a8a;
    
    /* Secondary Colors */
    --secondary-green: #059669;
    --secondary-purple: #7c3aed;
    --secondary-orange: #ea580c;
    
    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-accent: #f3f4f6;
    
    /* Text Colors */
    --text-primary: #1f2937;    /* Dark gray, not black */
    --text-secondary: #4b5563;  /* Medium gray */
    --text-muted: #6b7280;      /* Light gray */
    
    /* Button Colors */
    --btn-primary-bg: #1e40af;
    --btn-primary-text: #ffffff;
    --btn-secondary-bg: transparent;
    --btn-secondary-text: #1e40af;
    --btn-secondary-border: #1e40af;
}

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
    }
}

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

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.animate-pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

.animate-float {
    animation: floatAnimation 3s ease-in-out infinite;
}

.animate-gradient {
    background: linear-gradient(-45deg, #3b82f6, #1e40af, #7c3aed, #059669);
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite;
}

/* Advanced Button Styles */
.btn-premium {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-premium:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-premium:hover:before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-gradient-blue {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-gradient-blue:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(59, 130, 246, 0.4);
}

.btn-gradient-green {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-gradient-green:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(16, 185, 129, 0.4);
}

/* Premium Card Styles */
.card-premium {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-premium:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #7c3aed, #059669);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
}

.card-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.card-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

/* Gradient Text Effects */
.text-gradient-blue {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.text-gradient-purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.text-gradient-rainbow {
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Advanced Hover Effects */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.hover-scale {
    transition: transform 0.3s ease;
}

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

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Premium Form Styles */
.form-premium {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
}

.input-premium {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.input-premium:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.input-premium:hover {
    border-color: #9ca3af;
    background: white;
}

.textarea-premium {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafafa;
    resize: vertical;
    min-height: 120px;
}

.textarea-premium:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.select-premium {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafafa;
    cursor: pointer;
}

.select-premium:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* Navigation Enhancements */
.nav-premium {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s ease;
}

.nav-link-premium {
    position: relative;
    font-weight: 500;
    color: #4b5563;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-link-premium:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #7c3aed);
    transition: width 0.3s ease;
}

.nav-link-premium:hover:after,
.nav-link-premium.active:after {
    width: 100%;
}

.nav-link-premium:hover {
    color: #3b82f6;
}

/* Header Navigation Hover Effect */
.nav a[href^="/"] {
    position: relative;
    transition: color 0.3s ease;
}

.nav a[href^="/"]:hover {
    color: #1e40af !important;
}

.nav a[href^="/"]:focus {
    outline: none !important;
    box-shadow: none !important;
}

.nav a[href^="/"]:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* Remove all focus outlines from navigation */
nav a:focus,
nav a:focus-visible,
nav a:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Hero Section Effects */
.hero-gradient {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(124, 58, 237, 0.1) 50%, 
        rgba(5, 150, 105, 0.1) 100%);
}

.hero-text-shadow {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Contact Card Special Effects */
.contact-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover:before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-card .icon-wrapper {
    transition: all 0.3s ease;
}

.contact-card:hover .icon-wrapper {
    transform: rotate(5deg) scale(1.1);
}

/* Service Card Premium Style */
.service-card-premium {
    background: white;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
}

.service-card-premium:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #7c3aed, #10b981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

.service-icon-glow {
    transition: all 0.3s ease;
}

.service-card-premium:hover .service-icon-glow {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.3);
    transform: scale(1.1);
}

/* Stats Counter Animation */
.stats-counter {
    font-weight: 700;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer Premium Style */
.footer-premium {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #d1d5db;
    position: relative;
    overflow: hidden;
}

.footer-premium:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, #7c3aed, #10b981, transparent);
}

/* Responsive Design Helpers */
@media (max-width: 768px) {
    .card-premium {
        padding: 24px;
        border-radius: 16px;
    }
    
    .form-premium {
        padding: 24px;
        border-radius: 16px;
    }
    
    .btn-gradient-blue,
    .btn-gradient-green {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .card-premium {
        background: #1f2937;
        color: #f9fafb;
    }
    
    .input-premium,
    .textarea-premium,
    .select-premium {
        background: #374151;
        border-color: #4b5563;
        color: #f9fafb;
    }
    
    .input-premium:focus,
    .textarea-premium:focus,
    .select-premium:focus {
        background: #1f2937;
        border-color: #3b82f6;
    }
}

/* Modern Scroll Effects */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.scroll-fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

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

.scroll-slide-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.scroll-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slide-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.scroll-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Premium Utility Classes */
.glass-effect {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.neumorphism {
    background: #f0f0f0;
    border-radius: 20px;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}

.neumorphism-inset {
    background: #f0f0f0;
    border-radius: 20px;
    box-shadow: inset 20px 20px 60px #bebebe, inset -20px -20px 60px #ffffff;
}

.gradient-border {
    position: relative;
    background: white;
    border-radius: 16px;
}

.gradient-border:before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, #3b82f6, #7c3aed, #10b981);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

/* Mouse Trail Animation */
@keyframes trailFade {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Enhanced Form Animations */
.form-focus {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.input-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.valid {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

.invalid {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* Premium Loading States */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading:after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: currentColor;
    animation: spin 1s ease infinite;
}

/* Advanced Typography */
.text-shimmer {
    background: linear-gradient(90deg, #333 0%, #fff 50%, #333 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
    border-radius: 4px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1e40af, #5b21b6);
}

/* Logo Styles */
.site-logo {
    max-height: 56px;  /* Header'da daha büyük - text yok artık */
    height: auto;
    width: auto;
    transition: transform 0.3s ease;
}

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

@media (max-width: 640px) {
    .site-logo {
        max-height: 44px;  /* Mobile'da da biraz büyüttük */
    }
}

/* Footer logo özel styling */
footer .site-logo {
    max-height: 48px;  /* Footer'da daha küçük - text var yanında */
}

/* Contact Forms Equal Height */
.contact-forms-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-form-card {
    display: flex;
    flex-direction: column;
    min-height: 800px;
    height: 800px;
}

.contact-form-card form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form-card .form-submit {
    margin-top: auto;
}

@media (max-width: 1024px) {
    .contact-forms-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-card {
        min-height: auto;
    }
}

/* FAQ Accordion Styles */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item.faq-open {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.faq-item.faq-open .faq-header {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(124, 58, 237, 0.05));
}

.faq-header {
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.faq-item.faq-open .faq-header {
    border-bottom-color: rgba(59, 130, 246, 0.1);
}

.faq-content {
    background: #ffffff;
}

.faq-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Corporate Gradient Effects */
.corporate-gradient-text {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #f97316;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}

/* Loading animations */
.animate-counter {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Card hover effects */
.service-card {
    transition: all 0.3s ease;
    background-color: var(--bg-primary);
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gray-300);
}

/* Button Styles */
.btn-primary {
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border: 2px solid var(--btn-primary-bg);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.3);
}

.btn-secondary {
    background-color: var(--btn-secondary-bg);
    color: var(--btn-secondary-text);
    border: 2px solid var(--btn-secondary-border);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.2);
}

/* Text Color Classes */
.text-primary {
    color: var(--text-primary) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Focus states for accessibility */
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}

/* Completely remove focus from all navigation elements */
nav *:focus,
nav *:focus-visible,
nav *:active,
header *:focus,
header *:focus-visible,
header *:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Remove focus outline from navigation links */
.nav a:focus,
.nav a:focus-visible,
.nav a:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Global navigation focus removal */
nav a:focus,
nav a:focus-visible,
nav a:active,
header a:focus,
header a:focus-visible,
header a:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
}

/* Print styles */
@media print {
    .fixed,
    nav,
    footer {
        display: none !important;
    }
}
