/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-display: swap;
}

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
    display: block;
    will-change: transform;
}

/* Critical CSS for above-the-fold content */
.hero,
.hero-container,
.hero-content,
.hero-buttons {
    contain: layout style paint;
}

/* Optimize animations for performance */
@media (prefers-reduced-motion: no-preference) {
    .btn,
    .feature-card,
    .hero-badge {
        will-change: transform;
    }
}

/* Reduce layout shift */
.hero-image {
    aspect-ratio: 4/5;
    min-height: 500px;
    max-height: 600px;
    position: relative;
}

/* Optimize font loading */
@font-face {
    font-family: 'Inter';
    font-display: swap;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 200px;
}

.nav-logo h2 {
    color: #2563eb;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2563eb;
}

.nav-item-desktop {
    display: block;
}

.nav-section {
    display: none;
}

.nav-buttons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.btn-sm {
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 80px 0 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 25px;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: #ffd700;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content .highlight {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.benefit-item i {
    color: #4ade80;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    margin-bottom: 1rem;
    justify-content: flex-start;
}

.hero-trust {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-trust i {
    margin: 0 0.3rem;
    color: #4ade80;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn::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:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.9);
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
}

.hero-buttons .btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    min-width: 160px;
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: phoneFloat 3s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg);
    }
    25% {
        transform: translateY(-10px) rotateY(2deg);
    }
    50% {
        transform: translateY(-5px) rotateY(0deg);
    }
    75% {
        transform: translateY(-10px) rotateY(-2deg);
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.app-preview {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    animation: slideInFromRight 1.5s ease-out;
    transform: translateX(0);
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    50% {
        transform: translateX(-10%);
        opacity: 0.8;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Floating animation for continuous effect */
.app-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* QR Menu Overlay */
.qr-menu-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    pointer-events: none;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-menu-logo {
    position: relative;
    z-index: 1000;
    text-align: center;
}

.floating-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8))
           drop-shadow(0 0 30px rgba(255, 255, 255, 0.6))
           drop-shadow(0 0 40px rgba(255, 255, 255, 0.4));
    animation: 
        logoFloat 4s ease-in-out infinite,
        logoGlow 3s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateX(0px) translateY(0px) rotateY(0deg) rotateX(0deg) scale(1);
    }
    25% {
        transform: translateX(-15px) translateY(-5px) rotateY(5deg) rotateX(2deg) scale(1.05);
    }
    50% {
        transform: translateX(0px) translateY(-10px) rotateY(0deg) rotateX(5deg) scale(1.1);
    }
    75% {
        transform: translateX(15px) translateY(-5px) rotateY(-5deg) rotateX(2deg) scale(1.05);
    }
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8))
               drop-shadow(0 0 30px rgba(255, 255, 255, 0.6))
               drop-shadow(0 0 40px rgba(255, 255, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1))
               drop-shadow(0 0 40px rgba(255, 255, 255, 0.8))
               drop-shadow(0 0 50px rgba(255, 255, 255, 0.6))
               drop-shadow(0 0 60px rgba(102, 126, 234, 0.4));
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f9fafb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

.features-more {
    text-align: center;
}

/* More Features Section */
.more-features {
    padding: 80px 0;
    background: white;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    padding: 1.5rem;
    border-left: 4px solid #2563eb;
    background: #f8fafc;
    border-radius: 0 10px 10px 0;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.feature-item p {
    color: #6b7280;
}

/* Another Features Section */
.another-features {
    padding: 80px 0;
    background: #f9fafb;
}

.features-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item-2 {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-item-2 h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-item-2 p {
    color: #6b7280;
}

/* Screenshots Section */
.screenshots {
    padding: 80px 0;
    background: white;
}

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

.screenshots-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    width: 100%;
    justify-content: flex-start;
}

.screenshot-item {
    flex: 0 0 350px;
    scroll-snap-align: start;
    margin-right: 1rem;
}

.phone-frame {
    width: 100%;
    height: 600px;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.screen-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    border-radius: 0 0 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.screen-overlay h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.screen-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.phone-frame:hover .screen-overlay {
    transform: translateY(0);
}

.phone-frame:hover .screen-image {
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #2563eb;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #f8fafc;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.faq-question i {
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
}

.faq-answer ul {
    list-style: none;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.faq-answer li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f9fafb;
}

.testimonials-carousel {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    width: 100%;
    justify-content: flex-start;
}

.testimonial-item {
    flex: 0 0 350px;
    scroll-snap-align: start;
    margin-right: 1rem;
}

.testimonial-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-stars {
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1.2rem;
    margin: 0 0.1rem;
}

.testimonial-content p {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4b5563;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

/* Trial Section */
.trial {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.trial .section-header h2,
.trial .section-header p {
    color: white !important;
}

.trial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trial-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.trial-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    color: white;
}

.trial-feature i {
    color: white;
    font-size: 1.5rem;
}

.trial-feature span {
    color: white;
    font-weight: 500;
}

.trial-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Popup Styles */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.popup.active {
    display: flex;
}

.popup-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease;
}

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

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.popup-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.popup-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    line-height: 1;
}

.popup-close:hover {
    color: #ef4444;
}

.popup-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.popup-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.popup-footer p {
    margin: 0;
    color: #6b7280;
}

.popup-footer a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.popup-footer a:hover {
    text-decoration: underline;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.newsletter .section-header h2,
.newsletter .section-header p {
    color: white;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    gap: 1.5rem;
}

.demo-form {
    max-width: 800px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.newsletter-form input,
.newsletter-form select,
.newsletter-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.newsletter-form input:focus,
.newsletter-form select:focus,
.newsletter-form textarea:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.newsletter-form textarea {
    resize: vertical;
    min-height: 100px;
}

.newsletter-form button {
    padding: 1rem 2rem;
    border-radius: 50px;
    background: #2563eb;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.newsletter-form button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f9fafb;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.download-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-direction: row;
    align-items: center;
}

.download-buttons .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    min-width: auto;
    border-radius: 6px;
    font-weight: 500;
}

.download-buttons .btn i {
    font-size: 0.8rem;
    margin-right: 0.3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) and (min-width: 481px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .hero {
        padding: 70px 0 30px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        align-items: center;
        justify-items: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-benefits {
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        justify-content: center;
    }
    
    .hero-trust {
        font-size: 0.8rem;
    }
    
    .hero-image {
        aspect-ratio: 3/4;
        min-height: 400px;
        max-height: 500px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
        margin: 0 auto;
    }
    
    .floating-logo {
        width: 80px;
        animation: 
            logoFloat 3s ease-in-out infinite,
            logoGlow 2.5s ease-in-out infinite;
    }
    
    /* Mobil Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        padding: 0 1rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #f9fafb;
        border-bottom: 2px solid #374151;
        padding-bottom: 0.5rem;
        display: inline-block;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
        align-items: center;
    }
    
    .download-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        justify-content: center;
        border-radius: 8px;
    }
    
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-links li {
        margin-bottom: 0.75rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid #374151;
    }
    
    .footer-links li:last-child {
        border-bottom: none;
    }
    
    .footer-links a {
        color: #d1d5db;
        text-decoration: none;
        font-size: 0.9rem;
        line-height: 1.5;
        transition: color 0.3s ease;
        display: block;
        padding: 0.5rem 0;
    }
    
    .footer-links a:hover {
        color: #2563eb;
    }
    
    .footer-bottom {
        padding: 1.5rem 1rem 0;
        font-size: 0.85rem;
    }
    
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        background: rgba(37, 99, 235, 0.1);
        z-index: 1002;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: #2563eb;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobile Menu */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        padding: 2rem 0 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        transform: translateX(-100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
        z-index: 1001 !important;
        display: flex !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
    
    .nav-menu.active {
        transform: translateX(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-menu.active .nav-section {
        display: block !important;
    }
    
    .nav-menu li {
        margin: 0 !important;
        text-align: left !important;
        list-style: none !important;
        width: 100% !important;
    }
    
    .nav-item-desktop {
        display: none !important;
    }
    
    .nav-section {
        margin-bottom: 2rem !important;
        padding: 0 1rem !important;
        display: none !important;
    }
    
    .nav-section h4 {
        color: #2563eb !important;
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        margin-bottom: 1rem !important;
        padding-bottom: 0.5rem !important;
        border-bottom: 2px solid #e5e7eb !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .nav-section h4 i {
        font-size: 1rem !important;
        color: #2563eb !important;
    }
    
    .nav-menu a {
        font-size: 1rem !important;
        font-weight: 500 !important;
        padding: 0.75rem 1rem !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        display: block !important;
        color: #374151 !important;
        text-decoration: none !important;
        margin-bottom: 0.5rem !important;
        background: transparent !important;
    }
    
    .nav-menu a:hover {
        background: #f3f4f6 !important;
        color: #2563eb !important;
        transform: translateX(5px) !important;
        box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1) !important;
    }
    
    .download-link {
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
    }
    
    .download-link:hover {
        background: #eff6ff !important;
        border-color: #2563eb !important;
    }
    
    .download-link i {
        font-size: 1.2rem !important;
        color: #2563eb !important;
    }
    
    .btn-full {
        width: 100% !important;
        margin-bottom: 0.75rem !important;
        justify-content: center !important;
        font-size: 0.95rem !important;
        padding: 0.875rem 1.5rem !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Mobile specific feature card designs */
    .feature-card:nth-child(1) {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        transform: scale(0.95);
    }
    
    .feature-card:nth-child(1) .feature-icon {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }
    
    .feature-card:nth-child(1) h3,
    .feature-card:nth-child(1) p {
        color: white;
    }
    
    .feature-card:nth-child(2) {
        background: white;
        border: 2px solid #2563eb;
        transform: scale(0.9);
    }
    
    .feature-card:nth-child(2) .feature-icon {
        background: #2563eb;
        color: white;
    }
    
    .feature-card:nth-child(3) {
        background: #f8fafc;
        border-left: 4px solid #10b981;
        transform: scale(0.85);
    }
    
    .feature-card:nth-child(3) .feature-icon {
        background: #10b981;
        color: white;
    }
    
    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .features-grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trial-features {
        grid-template-columns: 1fr;
    }
    
    .trial-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .download-buttons {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    /* Hide some elements on mobile for better UX */
    .hero-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    /* Optimize carousels for mobile */
    .screenshots-carousel,
    .testimonials-carousel {
        max-width: 100%;
    }
    
    .screenshot-item,
    .testimonial-item {
        flex: 0 0 280px;
        margin-right: 0.5rem;
    }
    
    /* Articles carousel mobile optimization */
    .articles-container {
        padding: 0 0.5rem;
    }
    
    .article-card {
        flex: 0 0 280px;
        padding: 0;
    }
    
    .article-icon {
        padding: 1.5rem;
    }
    
    .article-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    /* Single column for very small screens */
    .features-grid,
    .features-list,
    .features-grid-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Optimize carousels for very small screens */
    .screenshot-item,
    .testimonial-item,
    .article-card {
        flex: 0 0 250px;
    }
    
    /* Küçük ekranlar için footer optimizasyonu */
    .footer {
        padding: 25px 0 15px;
    }
    
    .footer-content {
        gap: 1.25rem;
    }
    
    .footer-section {
        padding: 0 0.5rem;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
    
    .download-buttons .btn {
        max-width: 220px;
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
        padding: 0.4rem 0;
        line-height: 1.4;
    }
    
    .footer-bottom {
        padding: 1rem 0.5rem 0;
        font-size: 0.75rem;
    }
}

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

/* İlginizi Çekebilir Bölümü */
.related-articles {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

.related-articles h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
}

.articles-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.articles-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
    padding: 0 1rem;
}

.article-card {
    flex: 0 0 350px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-right: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.article-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2.5rem 2rem;
    text-align: center;
    color: white;
    flex-shrink: 0;
}

.article-icon i {
    font-size: 3rem;
    color: white;
}

.article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
    line-height: 1.4;
}

.article-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.read-more {
    color: #2563eb;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.article-card:hover .read-more {
    color: #1d4ed8;
}

/* Articles Carousel Dots */
.articles-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.articles-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.articles-dot.active {
    background: #2563eb;
    transform: scale(1.2);
}

/* Footer Linkleri */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-links a:hover {
    color: #2563eb;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .articles-container {
        padding: 0 0.5rem;
    }
    
    .article-card {
        flex: 0 0 300px;
    }
    
    .article-icon {
        padding: 2rem 1.5rem;
    }
    
    .article-icon i {
        font-size: 2.5rem;
    }
    
    .article-content {
        padding: 1.25rem;
    }
    
    .article-card h4 {
        font-size: 1rem;
    }
    
    .article-card p {
        font-size: 0.85rem;
    }
}

/* ===== MAKALE SAYFALARI STİLLERİ ===== */

/* Article Header */
.article-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 60px;
    margin-top: 80px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.back-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: white;
}

.article-date {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
}

/* Article Content */
.article-content {
    padding: 4rem 0;
    background: #f8fafc;
}

.article-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.article-body {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.article-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

.article-body h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.article-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #374151;
    margin: 2rem 0 1rem;
}

.article-body ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-body li {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 0.75rem;
}

.article-body strong {
    color: #1f2937;
    font-weight: 600;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.article-cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.article-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.article-cta .btn {
    background: white;
    color: #2563eb;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.article-cta .btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
}

.related-articles-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.related-articles-sidebar h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

.related-articles-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-articles-sidebar li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.related-articles-sidebar li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-articles-sidebar a {
    color: #374151;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
    display: block;
}

.related-articles-sidebar a:hover {
    color: #2563eb;
}

/* Article Page Responsive */
@media (max-width: 1024px) {
    .article-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .article-header {
        padding: 100px 0 40px;
        margin-top: 70px;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-excerpt {
        font-size: 1rem;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .article-content {
        padding: 2rem 0;
    }
    
    .article-body {
        padding: 2rem 1.5rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-body h3 {
        font-size: 1.2rem;
    }
    
    .article-body p,
    .article-body li {
        font-size: 1rem;
    }
    
    .article-cta {
        padding: 2rem 1.5rem;
    }
    
    .article-cta h3 {
        font-size: 1.3rem;
    }
    
    .related-articles-sidebar {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-body {
        padding: 1.5rem 1rem;
    }
    
    .article-body h2 {
        font-size: 1.3rem;
    }
    
    .article-body h3 {
        font-size: 1.1rem;
    }
    
    .article-cta {
        padding: 1.5rem 1rem;
    }
    
    .article-cta h3 {
        font-size: 1.2rem;
    }
    
    .related-articles-sidebar {
        padding: 1rem;
    }
}

/* Mobile Footer Toggle Menu */
.mobile-footer-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-footer-toggle {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.mobile-footer-toggle i {
    color: white;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.mobile-footer-toggle.active i {
    transform: rotate(180deg);
}

.mobile-footer-content {
    padding: 30px 20px 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-footer-content.active {
    max-height: 300px;
}

.mobile-footer-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.mobile-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: #667eea;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.mobile-action-btn:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
    color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.mobile-action-btn i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.mobile-action-btn span {
    font-size: 0.8rem;
    font-weight: 500;
}

.whatsapp-btn {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.call-btn {
    background: rgba(52, 211, 153, 0.1);
    color: #34d399;
    border-color: rgba(52, 211, 153, 0.2);
}

.call-btn:hover {
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
    box-shadow: 0 4px 12px rgba(52, 211, 153, 0.2);
}

.email-btn {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.2);
}

.email-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

/* Mobile Footer Menu Responsive */
@media (max-width: 768px) {
    .mobile-footer-menu {
        display: block;
    }
    
    .footer {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .mobile-footer-content {
        padding: 25px 15px 15px;
    }
    
    .mobile-footer-actions {
        gap: 10px;
    }
    
    .mobile-action-btn {
        padding: 12px 8px;
    }
    
    .mobile-action-btn i {
        font-size: 1.3rem;
    }
    
    .mobile-action-btn span {
        font-size: 0.75rem;
    }
}

.swal2-container
{
    z-index: 10001!important;
}
