/* ===========================
   Modern Landing Page Styles
   =========================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc3545;
    --primary-dark: #c82333;
    --primary-light: #f8d7da;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --danger-color: #dc3545;
    --purple-color: #6f42c1;
    --pink-color: #e83e8c;
    --teal-color: #20c997;
    --orange-color: #fd7e14;
    
    --text-dark: #343a40;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    
    --gradient-primary: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-success: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
    
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.brand-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 3px;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-outline:hover {
    background: var(--text-dark);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

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

.btn-nav {
    padding: 10px 24px;
    font-size: 0.95rem;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    z-index: -1;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    top: -200px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-secondary);
    bottom: -100px;
    left: -50px;
    animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-success);
    top: 50%;
    left: 50%;
    animation: float 25s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Phone Mockup */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    animation: floatPhone 3s infinite ease-in-out;
}

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

.phone-frame {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: white;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: floatCard 4s infinite ease-in-out;
}

.floating-card i {
    font-size: 1.5rem;
}

.card-1 {
    top: 10%;
    right: -20%;
    color: var(--primary-color);
}

.card-1 i {
    color: var(--primary-color);
}

.card-2 {
    bottom: 15%;
    left: -25%;
    color: var(--success-color);
}

.card-2 i {
    color: var(--success-color);
}

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

/* ===========================
   Section Styles
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   Features Section
   =========================== */
.features {
    padding: 100px 0;
    background: white;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.feature-icon-primary {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.2) 100%);
    color: var(--primary-color);
}

.feature-icon-success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.2) 100%);
    color: var(--success-color);
}

.feature-icon-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.2) 100%);
    color: var(--warning-color);
}

.feature-icon-danger {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.2) 100%);
    color: var(--danger-color);
}

.feature-icon-info {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.1) 0%, rgba(23, 162, 184, 0.2) 100%);
    color: var(--info-color);
}

.feature-icon-purple {
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.1) 0%, rgba(111, 66, 193, 0.2) 100%);
    color: var(--purple-color);
}

.feature-icon-pink {
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.1) 0%, rgba(232, 62, 140, 0.2) 100%);
    color: var(--pink-color);
}

.feature-icon-teal {
    background: linear-gradient(135deg, rgba(32, 201, 151, 0.1) 0%, rgba(32, 201, 151, 0.2) 100%);
    color: var(--teal-color);
}

.feature-icon-orange {
    background: linear-gradient(135deg, rgba(253, 126, 20, 0.1) 0%, rgba(253, 126, 20, 0.2) 100%);
    color: var(--orange-color);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.feature-list i {
    color: var(--success-color);
    font-size: 1rem;
}

/* ===========================
   How It Works Section
   =========================== */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-light);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
}

.step {
    position: relative;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: none; /* Numaraları gizle */
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.step-content {
    background: white;
    padding: 60px 30px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===========================
   Pricing Section
   =========================== */
.pricing {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

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

.pricing-card-featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fff 0%, #fff5f6 100%);
    box-shadow: var(--shadow-md);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 8px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 20px;
}

.pricing-description {
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-dark);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    font-size: 1.2rem;
}

.pricing-features .fa-check {
    color: var(--success-color);
}

.pricing-features .fa-times {
    color: var(--text-light);
}

.opacity-30 {
    opacity: 0.3;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: #ffc107;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-position {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===========================
   CTA Section
   =========================== */
.cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-brand i {
    color: var(--primary-color);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

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

/* ===========================
   Mobile App Showcase Section
   =========================== */
.mobile-app-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

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

.mobile-app-showcase .container {
    position: relative;
    z-index: 1;
}

.mobile-app-showcase .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.mobile-app-showcase .section-title {
    color: white;
}

.mobile-app-showcase .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.mobile-app-content {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* App Mockup */
.app-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.app-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

.phone-frame {
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 8px #2a2a2a,
        0 0 0 10px #1a1a1a;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-mockup-2 {
    position: absolute;
    right: -80px;
    top: 60px;
    opacity: 0.7;
    transform: scale(0.8) rotate(10deg);
}

/* App Features Grid */
.app-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.app-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.app-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.app-feature-card h3 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 8px;
}

.app-feature-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* App Download Section */
.app-download-section {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    grid-column: 1 / -1;
}

.app-download-section h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 30px;
}

.app-store-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.app-store-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.app-store-btn i {
    font-size: 2.5rem;
}

.app-store-btn div {
    text-align: left;
}

.app-store-btn .small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.app-store-btn .large {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
}

.app-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.app-rating .stars {
    display: flex;
    gap: 4px;
}

.app-rating .stars i {
    color: #ffc107;
    font-size: 1.2rem;
}

.app-rating p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
    .mobile-app-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .app-mockup-wrapper {
        order: 1;
    }

    .app-features {
        order: 2;
    }

    .app-mockup-2 {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-app-showcase {
        padding: 60px 0;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }

    .app-store-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .app-store-btn {
        justify-content: center;
    }
}

/* ===========================
   Scroll to Top Button
   =========================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin-bottom: 16px;
    }
    
    .nav-link {
        display: block;
        padding: 12px 20px;
        border-radius: var(--border-radius);
    }
    
    .nav-link:hover {
        background: var(--bg-light);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 40px;
    }
    
    .floating-card {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .phone-frame {
        width: 250px;
        height: 500px;
    }
    
    .features-grid,
    .steps-container,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stat {
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Remove focus outline but maintain accessibility */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===========================
   Additional Styles for Enhanced Landing Page
   =========================== */

/* Trust Badges */
.trust-badges {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.trust-badge i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.trust-badge-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.trust-badge-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Features Overview */
.features-overview {
    padding: 60px 0;
    background: var(--bg-light);
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-showcase-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-showcase-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature-showcase-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-showcase-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Feature Badge */
.feature-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.feature-card {
    position: relative;
}

/* Additional color variations for feature icons */
.feature-icon-indigo {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.2) 100%);
    color: #667eea;
}

.feature-icon-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0.2) 100%);
    color: #06b6d4;
}

.feature-icon-lime {
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.1) 0%, rgba(132, 204, 22, 0.2) 100%);
    color: #84cc16;
}

/* Additional Features Grid */
.additional-features {
    padding: 80px 0;
    background: white;
}

.additional-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.additional-feature {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.additional-feature:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.additional-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: block;
}

.additional-feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.additional-feature p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Hero enhancements */
.hero-features-list {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.hero-feature-item i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.floating-card.card-3 {
    top: 50%;
    right: -15%;
    color: var(--info-color);
    animation-delay: 1s;
}

.card-3 i {
    color: var(--info-color);
}

/* Step enhancements */
.step-list {
    list-style: none;
    margin-top: 16px;
    text-align: left;
}

.step-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.step-list i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Video Demo */
.video-demo {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 60px;
    align-items: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--text-dark);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 16px;
    opacity: 0.9;
}

.video-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

.video-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.video-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    background: var(--bg-light);
    padding: 6px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.pricing-toggle-btn {
    padding: 12px 32px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.pricing-toggle-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.pricing-monthly-equivalent {
    font-size: 0.9rem;
    color: var(--success-color);
    font-weight: 600;
    margin-top: 8px;
}

.pricing-note {
    text-align: center;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.pricing-comparison {
    text-align: center;
    margin-top: 40px;
}

.required {
    color: var(--danger-color);
}

/* Comparison Table */
.comparison-table {
    padding: 60px 0;
    background: var(--bg-light);
}

.comparison-table h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.table-responsive {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table thead {
    background: var(--primary-color);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
}

.comparison-table th {
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e9ecef;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.comparison-table .text-success {
    color: var(--success-color);
    font-size: 1.2rem;
}

.comparison-table .text-danger {
    color: var(--text-light);
    font-size: 1.2rem;
}

/* Testimonials Stats */
.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.testimonial-stat {
    text-align: center;
}

.testimonial-stat .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 12px;
}

.testimonial-stat .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.testimonial-stat .stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question > i:first-child {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.faq-question > span {
    flex: 1;
}

.faq-toggle {
    transition: var(--transition);
    font-size: 0.9rem;
}

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

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

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

.faq-answer > div {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer p {
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.faq-cta p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* CTA enhancements */
.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
}

.gradient-text-white {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1rem;
}

.cta-feature i {
    font-size: 1.2rem;
}

/* Contact Form Enhancements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-note {
    text-align: center;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.form-note i {
    margin-right: 6px;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details small {
    display: block;
    margin-top: 4px;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Footer Enhancements */
.footer-about {
    max-width: 300px;
}

.footer-certifications {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-certifications img {
    height: 40px;
    border-radius: 4px;
}

.footer-newsletter {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-content h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
}

.footer-links-inline {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-links-inline a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links-inline a:hover {
    color: white;
}

.footer-links-inline span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 998;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Responsive Enhancements */
@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
    
    .video-demo {
        grid-template-columns: 1fr;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-newsletter {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: 1fr;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
    }
    
    .additional-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-features-list {
        flex-direction: column;
        gap: 12px;
    }
    
    .pricing-toggle-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ===========================
   SMART MANAGEMENT FEATURES SECTION
   =========================== */

.smart-management {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

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

.smart-management .container {
    position: relative;
    z-index: 1;
}

.smart-management .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.smart-management .section-title {
    color: white;
}

.smart-management .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.smart-management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.smart-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.smart-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

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

.smart-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.smart-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.smart-card:hover .smart-icon::after {
    transform: scale(2);
}

.food-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.intern-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.personnel-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.announcement-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.smart-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.3;
}

.smart-title i {
    color: #667eea;
    margin-right: 8px;
}

.smart-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.smart-features {
    margin-bottom: 28px;
}

.smart-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.smart-features .feature-item:hover {
    background: #e9ecef;
    transform: translateX(4px);
}

.smart-features .feature-item i {
    color: #28a745;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.smart-features .feature-item span {
    font-size: 14px;
    color: #495057;
    font-weight: 500;
}

.smart-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    flex: 1;
    min-width: fit-content;
    justify-content: center;
}

.benefit-badge i {
    font-size: 14px;
}

.benefit-badge.savings {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.benefit-badge.efficiency {
    background: linear-gradient(135deg, #c6ffdd 0%, #5fa777 100%);
}

.benefit-badge.time {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.benefit-badge.accuracy {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.benefit-badge.compliance {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.benefit-badge.automation {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.benefit-badge.reach {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.benefit-badge.planning {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.smart-cta {
    margin-top: 60px;
    background: white;
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.smart-cta .cta-content h3 {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.3;
}

.smart-cta .cta-content h3 i {
    color: #667eea;
    margin-right: 12px;
}

.smart-cta .cta-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.smart-cta .cta-content p strong {
    color: #dc3545;
    font-weight: 700;
}

/* Responsive Design for Smart Management */
@media (max-width: 768px) {
    .smart-management {
        padding: 60px 0;
    }

    .smart-management-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .smart-card {
        padding: 32px 24px;
    }

    .smart-title {
        font-size: 20px;
    }

    .smart-cta {
        padding: 32px 24px;
    }

    .smart-cta .cta-content h3 {
        font-size: 24px;
    }

    .smart-cta .cta-content p {
        font-size: 16px;
    }

    .benefit-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ===========================
   INTEGRATED SYSTEMS SECTION
   =========================== */

.integrated-systems {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.integrated-systems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23dc3545" fill-opacity="0.03"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>') repeat;
    opacity: 0.4;
}

.integrated-systems .container {
    position: relative;
    z-index: 1;
}

.integrated-systems .section-badge {
    background: linear-gradient(135deg, #dc3545, #e83e8c);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    box-shadow: 0 8px 16px rgba(220, 53, 69, 0.3);
}

.integrated-systems .section-description {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

/* Integrated Grid */
.integrated-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 60px;
}

/* Integrated Card */
.integrated-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.integrated-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(220, 53, 69, 0.15);
}

.integrated-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #e83e8c, #fd7e14);
}

/* Icon Wrapper */
.integrated-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.integrated-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    position: relative;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    animation: float 3s ease-in-out infinite;
}

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

.nfc-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gate-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.garden-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.shuttle-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.bank-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Card Number */
.integrated-number {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 96px;
    font-weight: 900;
    color: rgba(220, 53, 69, 0.05);
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
}

/* Card Title */
.integrated-title {
    font-size: 28px;
    font-weight: 800;
    color: #212529;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.integrated-title i {
    color: #dc3545;
    font-size: 24px;
}

/* Card Description */
.integrated-description {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Features List */
.integrated-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 16px;
}

.integrated-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.integrated-features .feature-item i {
    color: #28a745;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.integrated-features .feature-item span {
    font-size: 15px;
    color: #495057;
    line-height: 1.6;
}

.integrated-features .feature-item strong {
    color: #212529;
    font-weight: 700;
}

/* Process Section */
.integrated-process {
    margin-bottom: 32px;
    padding: 32px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e9 100%);
    border-radius: 16px;
    border: 2px dashed #dc3545;
}

.integrated-process h4 {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.integrated-process h4 i {
    color: #dc3545;
}

.process-steps {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.step {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #dc3545, #e83e8c);
    color: white;
    border-radius: 50%;
    display: none; /* Numaraları gizle */
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 12px;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.step p {
    font-size: 14px;
    color: #495057;
    line-height: 1.5;
    font-weight: 500;
}

.step-arrow {
    font-size: 24px;
    color: #dc3545;
    font-weight: 700;
    flex-shrink: 0;
}

/* Benefits Section */
.integrated-benefits {
    padding: 32px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 16px;
}

.integrated-benefits h4 {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.integrated-benefits h4 i {
    color: #ffc107;
}

.integrated-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.integrated-benefits li {
    padding: 12px 0;
    color: #495057;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.integrated-benefits li i {
    color: #dc3545;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Integration CTA */
.integration-cta {
    margin-top: 80px;
    padding: 60px;
    background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%);
    border-radius: 32px;
    color: white;
    box-shadow: 0 20px 60px rgba(220, 53, 69, 0.3);
    position: relative;
    overflow: hidden;
}

.integration-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

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

.cta-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.cta-content h3 i {
    font-size: 28px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

.cta-buttons .btn-outline {
    background: white;
    color: #dc3545;
    border: 2px solid white;
}

.cta-buttons .btn-outline:hover {
    background: transparent;
    color: white;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.2);
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

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

.stat-item i {
    font-size: 36px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.stat-item strong {
    display: block;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 4px;
}

.stat-item span {
    font-size: 14px;
    opacity: 0.85;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .integrated-card {
        padding: 36px;
    }
    
    .integrated-features {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .integrated-systems {
        padding: 60px 0;
    }
    
    .integrated-card {
        padding: 28px;
    }
    
    .integrated-number {
        font-size: 64px;
        top: 20px;
        right: 20px;
    }
    
    .integrated-title {
        font-size: 22px;
    }
    
    .integrated-icon {
        width: 90px;
        height: 90px;
        font-size: 36px;
    }
    
    .integrated-features,
    .integrated-process,
    .integrated-benefits {
        padding: 24px;
    }
    
    .integration-cta {
        padding: 40px 28px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
    
    .cta-stats {
        gap: 36px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .integrated-systems .section-description {
        font-size: 16px;
    }
    
    .integrated-card {
        padding: 20px;
    }
    
    .integrated-title {
        font-size: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .integrated-description {
        font-size: 15px;
    }
    
    .process-steps {
        gap: 12px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .step p {
        font-size: 13px;
    }
}
