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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #e0e7ff 100%);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    /* background-color: #10b981; */
}

/* Fixed Background Elements */
.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(40px);
    opacity: 0.2;
}

.floating-circle-1 {
    width: 320px;
    height: 320px;
    background: #3b82f6;
    top: -160px;
    right: -160px;
    animation: float1 20s ease-in-out infinite;
}

.floating-circle-2 {
    width: 320px;
    height: 320px;
    background: #8b5cf6;
    bottom: -160px;
    left: -160px;
    animation: float2 25s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(100px, -100px); }
    50% { transform: translate(0, -200px); }
    75% { transform: translate(-100px, -100px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-100px, 100px); }
    50% { transform: translate(0, 200px); }
    75% { transform: translate(100px, 100px); }
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-logo {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desktop-nav {
    display: flex;
    gap: 1rem;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.nav-link:nth-child(1) { animation-delay: 0.1s; }
.nav-link:nth-child(2) { animation-delay: 0.2s; }
.nav-link:nth-child(3) { animation-delay: 0.3s; }
.nav-link:nth-child(4) { animation-delay: 0.4s; }

.nav-link:hover {
    color: #2563eb;
    transform: scale(1.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2563eb;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #374151;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

.mobile-nav {
    display: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem;
    animation: slideDown 0.3s ease-out;
}

.mobile-nav-link {
    display: block;
    color: #374151;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: fadeInLeft 0.3s ease-out;
    animation-fill-mode: both;
}

.mobile-nav-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-link:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-link:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-link:nth-child(4) { animation-delay: 0.4s; }

.mobile-nav-link:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 5rem 1rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

.gradient-text {
    background: linear-gradient(135deg, #2563eb, #8b5cf6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
}

.animated-gradient {
    animation: gradientShift 5s ease-in-out infinite;
}

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

.hero-description {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s;
    animation-fill-mode: both;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 64rem;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.8s;
    animation-fill-mode: both;
}

.tech-badge {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 0.5rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: scaleIn 0.5s ease-out;
    animation-fill-mode: both;
}

.tech-badge:nth-child(1) { animation-delay: 0.8s; }
.tech-badge:nth-child(2) { animation-delay: 0.9s; }
.tech-badge:nth-child(3) { animation-delay: 1.0s; }
.tech-badge:nth-child(4) { animation-delay: 1.1s; }
.tech-badge:nth-child(5) { animation-delay: 1.2s; }
.tech-badge:nth-child(6) { animation-delay: 1.3s; }
.tech-badge:nth-child(7) { animation-delay: 1.4s; }
.tech-badge:nth-child(8) { animation-delay: 1.5s; }

.tech-badge:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.floating-element-1 {
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.3);
    top: 5rem;
    left: 2.5rem;
    animation: floatUp 6s ease-in-out infinite;
}

.floating-element-2 {
    width: 64px;
    height: 64px;
    background: rgba(139, 92, 246, 0.3);
    bottom: 5rem;
    right: 2.5rem;
    animation: floatDown 8s ease-in-out infinite;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes floatDown {
    0%, 100% { transform: translateY(0) rotate(360deg); }
    50% { transform: translateY(20px) rotate(180deg); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.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 ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(37, 99, 235, 0.5);
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

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

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

/* Stats Section */
.stats-section {
    padding: 4rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    transition: transform 0.3s ease;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

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

.stat-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    color: #2563eb;
    font-size: 1.5rem;
    transition: transform 0.5s ease;
}

.stat-item:hover .stat-icon {
    transform: rotate(360deg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    animation: scaleIn 0.6s ease-out;
    animation-fill-mode: both;
}

.stat-label {
    color: #4b5563;
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #3d67a1;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #43699f;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image-container {
    position: relative;
    overflow: hidden;
    height: 12rem;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    padding: 0.75rem;
    font-size: 1.5rem;
    color: #2563eb;
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg);
}

.service-content {
    padding: 1.5rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.service-price {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.service-description {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.service-features ul {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    color: #4b5563;
    animation: fadeInLeft 0.5s ease-out;
    animation-fill-mode: both;
}

.service-features li:nth-child(1) { animation-delay: 0.1s; }
.service-features li:nth-child(2) { animation-delay: 0.2s; }
.service-features li:nth-child(3) { animation-delay: 0.3s; }
.service-features li:nth-child(4) { animation-delay: 0.4s; }

.service-features li i {
    /* color: #10b981; */
    margin-right: 0.5rem;
    font-size: 1rem;
}

.service-technologies {
    margin-bottom: 1.5rem;
}

.service-technologies h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.tech-tag {
    background: rgba(107, 114, 128, 0.1);
    color: #374151;
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(107, 114, 128, 0.2);
}

.service-btn {
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Process Section */
.process-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #1f2937 0%, #2563eb 100%);
    color: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    position: relative;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.3s; }
.process-step:nth-child(3) { animation-delay: 0.5s; }
.process-step:nth-child(4) { animation-delay: 0.7s; }

.process-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.2);
}

.process-icon {
    color: #60a5fa;
    margin-bottom: 1rem;
    font-size: 2rem;
    transition: transform 0.5s ease;
}

.process-step:hover .process-icon {
    transform: rotate(360deg);
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process-description {
    color: #d1d5db;
    line-height: 1.6;
}

.process-line {
    display: none;
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #8b5cf6);
    animation: expandLine 0.5s ease-out;
    animation-fill-mode: both;
}

.process-step:nth-child(1) .process-line { animation-delay: 0.6s; }
.process-step:nth-child(2) .process-line { animation-delay: 0.8s; }
.process-step:nth-child(3) .process-line { animation-delay: 1.0s; }

@keyframes expandLine {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
}

.testimonials-container {
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    height: 280px;
    width: 100%;
}

.testimonial {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
}

.testimonial.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.25rem;
    animation: scaleIn 0.3s ease-out;
    animation-fill-mode: both;
}

.testimonial-rating i:nth-child(1) { animation-delay: 0.1s; }
.testimonial-rating i:nth-child(2) { animation-delay: 0.2s; }
.testimonial-rating i:nth-child(3) { animation-delay: 0.3s; }
.testimonial-rating i:nth-child(4) { animation-delay: 0.4s; }
.testimonial-rating i:nth-child(5) { animation-delay: 0.5s; }

.testimonial-text {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    min-height: 120px;
    max-height: 120px;
    overflow: hidden;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 700;
    color: #1f2937;
}

.author-company {
    color: #4b5563;
}

.testimonial-controls {
    display: flex;
    gap: 0.5rem;
}

.play-pause-btn {
    background: none;
    border: none;
    color: #2563eb;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    
}

.play-pause-btn:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: scale(1.1);
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #2563eb;
    transform: scale(1.2);
}

.indicator:hover {
    transform: scale(1.2);
}

/* About Section */
.about-section {
    padding: 5rem 1rem;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-content {
    animation: fadeInLeft 0.8s ease-out;
}

.about-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.about-stat {
    transition: transform 0.3s ease;
}

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

.about-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.about-values {
    animation: fadeInRight 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

.values-card {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.values-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

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

.value-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    animation: fadeInLeft 0.5s ease-out;
    animation-fill-mode: both;
}

.value-item:nth-child(1) { animation-delay: 0.1s; }
.value-item:nth-child(2) { animation-delay: 0.2s; }
.value-item:nth-child(3) { animation-delay: 0.3s; }
.value-item:nth-child(4) { animation-delay: 0.4s; }

.value-item:hover {
    transform: translateX(5px);
}

.value-item i {
    color: #2563eb;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    font-size: 1.25rem;
    transition: transform 0.5s ease;
}

.value-item:hover i {
    transform: rotate(360deg);
}

.value-item span {
    color: #374151;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #f9fafb 0%, #dbeafe 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.contact-form-container .contact-card {
    animation-delay: 0.1s;
}

.contact-info-container .contact-card {
    animation-delay: 0.2s;
}

.contact-info-container .contact-card:last-child {
    animation-delay: 0.3s;
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.card-description {
    color: #4b5563;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    animation: fadeInLeft 0.5s ease-out;
    animation-fill-mode: both;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: transform 0.5s ease;
}

.contact-item:nth-child(1) .contact-icon { color: #2563eb; }
.contact-item:nth-child(2) .contact-icon { color: #10b981; }
.contact-item:nth-child(3) .contact-icon { color: #8b5cf6; }

.contact-item:hover .contact-icon {
    transform: rotate(360deg);
}

.contact-text {
    color: #374151;
    font-size: 1.125rem;
}

.gradient-card {
    background: linear-gradient(135deg, #2563eb, #8b5cf6) !important;
    color: white;
}

.gradient-card .card-title {
    color: white;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    animation: fadeInLeft 0.5s ease-out;
    animation-fill-mode: both;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    color: #10b981;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    font-size: 1.25rem;
}

.benefit-item span {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #000000 100%);
    color: white;
    padding: 4rem 1rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.footer-brand {
    animation: fadeInUp 0.6s ease-out;
}

.footer-logo {
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.125rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #9ca3af;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-column {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.footer-column:nth-child(2) { animation-delay: 0.1s; }
.footer-column:nth-child(3) { animation-delay: 0.2s; }

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

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

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    animation: fadeInUp 0.6s ease-out 0.3s;
    animation-fill-mode: both;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 1.125rem;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav.active {
        display: block;
    }

    /* Navigation improvements */
    .nav-content {
        height: 3.5rem;
        padding: 0 0.5rem;
    }

    .nav-logo {
        font-size: 1.25rem;
    }

    .nav-logo img,
    .logo-image {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    /* Hero section improvements */
    .hero-section {
        padding: 4rem 1rem 3rem;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-height: 48px; /* Better touch target */
    }

    /* Tech badges improvements */
    .tech-badges {
        gap: 0.75rem;
        margin-top: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .tech-badge {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        white-space: nowrap;
    }

    /* Stats section improvements */
    .stats-section {
        padding: 3rem 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Services improvements */
    .services-section {
        padding: 4rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .service-card {
        margin: 0;
        border-radius: 12px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        min-height: 44px;
    }

    /* Process section improvements */
    .process-section {
        padding: 4rem 1rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.5rem;
    }

    .process-line {
        display: none;
    }

    .process-content {
        text-align: center;
        padding: 1.5rem;
    }

    /* Testimonials improvements */
    .testimonials-section {
        padding: 4rem 1rem;
    }

    .testimonials-container {
        height: 420px;
        padding: 0 0.5rem;
    }

    .testimonial-carousel {
        height: 340px;
    }

    .testimonial {
        padding: 2rem 1rem;
    }

    .testimonial-text {
        min-height: 120px;
        max-height: 140px;
        font-size: 1.05rem;
        line-height: 1.5;
    }

    .author-name {
        font-size: 1rem;
    }

    .author-company {
        font-size: 0.85rem;
    }

    /* About section improvements */
    .about-section {
        padding: 4rem 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 0.5rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 2rem 0;
    }

    /* Contact section improvements */
    .contact-section {
        padding: 4rem 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.5rem;
    }

    .contact-card {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .form-input,
    .form-textarea {
        padding: 0.875rem;
        font-size: 1rem;
        min-height: 44px; /* Better touch target */
    }

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

    .contact-text {
        font-size: 1rem;
        word-break: break-word;
    }

    /* Footer improvements */
    .footer {
        padding: 3rem 1rem 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        margin-bottom: 1rem;
    }

    .footer-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (min-width: 769px) {
    .hero-buttons {
        flex-direction: row;
    }

    .process-line {
        display: block;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    /* Navigation for very small screens */
    .nav-content {
        height: 3rem;
        padding: 0 0.75rem;
    }

    .nav-logo img,
    .logo-image {
        width: 35px !important;
        height: 35px !important;
        min-width: 35px !important;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .mobile-nav {
        padding: 0.75rem;
    }

    .mobile-nav-link {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    /* Hero section for very small screens */
    .hero-section {
        padding: 3rem 0.75rem 2rem;
        min-height: 75vh;
    }

    .hero-title {
        font-size: 1.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.15;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0;
        line-height: 1.5;
    }

    .hero-buttons {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        max-width: 260px;
        padding: 0.8rem 1.25rem;
        font-size: 0.95rem;
        min-height: 46px;
    }

    /* Tech badges for very small screens */
    .tech-badges {
        gap: 0.5rem;
        margin-top: 1rem;
        padding: 0 0.5rem;
    }

    .tech-badge {
        font-size: 0.7rem;
        padding: 0.375rem 0.5rem;
        margin: 0.25rem;
    }

    /* Section headers for very small screens */
    .section-title {
        font-size: 1.65rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .section-description {
        font-size: 0.95rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }

    /* Stats section for very small screens */
    .stats-section {
        padding: 2.5rem 0.75rem;
    }

    .stats-grid {
        gap: 1rem;
        padding: 0;
    }

    .stat-item {
        padding: 1rem 0.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Services for very small screens */
    .services-section {
        padding: 3rem 0.75rem;
    }

    .services-grid {
        gap: 1.25rem;
        padding: 0;
    }

    .service-card {
        border-radius: 10px;
    }

    .service-content {
        padding: 1.25rem;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .service-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .service-btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
        min-height: 42px;
    }

    .tech-tags {
        gap: 0.375rem;
    }

    .tech-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    /* Process section for very small screens */
    .process-section {
        padding: 3rem 0.75rem;
    }

    .process-grid {
        gap: 1.5rem;
        padding: 0;
    }

    .process-content {
        padding: 1.25rem;
    }

    .process-number {
        font-size: 1.5rem;
    }

    .process-title {
        font-size: 1.1rem;
    }

    .process-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Testimonials for very small screens */
    .testimonials-section {
        padding: 3rem 0.75rem;
    }

    .testimonials-container {
        height: 380px;
        padding: 0;
    }

    .testimonial-carousel {
        height: 300px;
    }

    .testimonial {
        padding: 1.5rem 0.75rem;
    }

    .testimonial-text {
        min-height: 100px;
        max-height: 120px;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .author-name {
        font-size: 0.95rem;
    }

    .author-company {
        font-size: 0.8rem;
    }

    /* About section for very small screens */
    .about-section {
        padding: 3rem 0.75rem;
    }

    .about-grid {
        gap: 2rem;
        padding: 0;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .about-stats {
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .about-stat .stat-number {
        font-size: 1.5rem;
    }

    /* Contact section for very small screens */
    .contact-section {
        padding: 3rem 0.75rem;
    }

    .contact-grid {
        gap: 1.5rem;
        padding: 0;
    }

    .contact-card {
        padding: 1.25rem;
        border-radius: 10px;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .card-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .form-input,
    .form-textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
        min-height: 42px;
    }

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

    .contact-text {
        font-size: 0.9rem;
    }

    .contact-icon {
        font-size: 1.25rem;
        margin-right: 0.75rem;
    }

    /* Footer for very small screens */
    .footer {
        padding: 2.5rem 0.75rem 1.5rem;
    }

    .footer-grid {
        gap: 1.5rem;
    }

    .footer-logo {
        font-size: 1.35rem;
    }

    .footer-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .footer-copyright {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* WhatsApp button for very small screens */
    .floating-whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 1.5rem;
    }
}

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

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1d4ed8, #7c3aed);
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.form-input:focus,
.form-textarea:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.floating-whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* WhatsApp Button in Hero Section */
.btn-whatsapp {
    background: #25d366;
    color: white;
    border: 2px solid #25d366;
}

.btn-whatsapp:hover {
    background: #128c7e;
    border-color: #128c7e;
    color: white;
}

/* QR Code Section */
.qr-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #e0e7ff 100%);
}

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

.qr-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.qr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.qr-header {
    margin-bottom: 1.5rem;
}

.qr-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.qr-description {
    color: #6b7280;
    font-size: 0.95rem;
}

.qr-image-container {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-image {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.qr-actions {
    margin-top: 1.5rem;
}

.qr-actions .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
}

/* Form Validation Styles */
.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-input.error,
.form-textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Success Notification */
.success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    animation: slideInRight 0.3s ease-out;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notification-content i {
    font-size: 1.2rem;
}

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

/* Loading Button Styles */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: none;
}

/* Toastr Custom Styling */
.toastr-container {
    z-index: 9999;
}

.toast-success {
    background-color: #10b981;
    border-color: #059669;
}

.toast-error {
    background-color: #ef4444;
    border-color: #dc2626;
}

.toast-info {
    background-color: #3b82f6;
    border-color: #2563eb;
}

.toast-warning {
    background-color: #f59e0b;
    border-color: #d97706;
}

.toast {
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.toast-message {
    font-size: 14px;
    line-height: 1.5;
}

.toast-title {
    font-weight: 600;
    font-size: 16px;
}

.toast-close-button {
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
}

.toast-close-button:hover {
    color: rgba(255, 255, 255, 1);
}

.toast-progress {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    /* Floating WhatsApp button improvements */
    .floating-whatsapp-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.75rem;
        z-index: 1001;
    }

    /* Better scroll behavior on mobile */
    body {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }

    /* Improve touch targets */
    .mobile-nav-link,
    .nav-link,
    .btn,
    .service-btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Prevent horizontal scroll */
    .hero-section,
    .services-section,
    .process-section,
    .testimonials-section,
    .about-section,
    .contact-section {
        overflow-x: hidden;
    }
}

/* Responsive QR Grid */
@media (max-width: 768px) {
    .qr-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .qr-card {
        padding: 1.5rem;
    }

    .qr-image {
        max-width: 150px;
    }

    .success-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        text-align: center;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .btn {
        max-width: 200px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .tech-badges {
        margin-top: 1rem;
    }

    .floating-whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 1.5rem;
    }
}

/* Admin Styles */

.admin-main {
    padding-top: 80px;
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #e0e7ff 100%);
}

/* Login Page Styles */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.login-container {
    width: 100%;
    max-width: 400px;
}

.login-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.login-logo .logo-image {
    width: 50px;
    height: 50px;
}

.login-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.login-subtitle {
    color: #6b7280;
    margin: 0;
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    z-index: 1;
}

.form-input {
    padding-left: 3rem;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    z-index: 1;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
}

.back-link {
    color: #6b7280;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #2563eb;
}

/* Alert Styles */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Dashboard Styles */
.admin-dashboard {
    padding: 2rem 0;
}

.dashboard-header {
    margin-bottom: 2rem;
}

.dashboard-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.dashboard-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
}

.admin-stats {
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #3b82f6;
}

.stat-card.unread {
    border-left-color: #ef4444;
}

.stat-card.read {
    border-left-color: #f59e0b;
}

.stat-card.replied {
    border-left-color: #10b981;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.dashboard-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Table Styles */
.messages-table {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 1fr 1.5fr 1fr;
    background: #f9fafb;
    padding: 1rem;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 1fr 1.5fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.3s ease;
}

.table-row:hover {
    background: #f9fafb;
}

.table-row.unread-row {
    background: #fef2f2;
}

.table-cell {
    display: flex;
    align-items: center;
}

.message-info strong {
    display: block;
    color: #1f2937;
}

.message-info small {
    color: #6b7280;
    font-size: 0.875rem;
}

.subject-text {
    color: #374151;
    font-weight: 500;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
}

.badge-secondary {
    background: #f3f4f6;
    color: #374151;
}

.date-info div {
    color: #1f2937;
    font-weight: 500;
}

.date-info small {
    color: #6b7280;
    font-size: 0.875rem;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.5rem;
    font-size: 0.875rem;
    min-width: auto;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-icon {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: #374151;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.action-card {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.action-card:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.action-icon {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.action-card h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.action-card p {
    color: #6b7280;
    margin: 0;
}

/* Filter Bar */
.filter-bar {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-label {
    font-weight: 500;
    color: #374151;
    white-space: nowrap;
}

.filter-select,
.filter-input {
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: white;
    color: #374151;
    min-width: 150px;
}

.filter-input {
    min-width: 250px;
}

/* Message Detail Styles */
.message-detail {
    padding: 2rem 0;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #2563eb;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.message-content {
    display: grid;
    gap: 2rem;
    grid-template-columns: 2fr 1fr;
}

.message-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.message-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.message-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sender-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sender-avatar {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.sender-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
}

.sender-email,
.sender-phone {
    color: #6b7280;
    margin: 0;
    font-size: 0.875rem;
}

.message-meta {
    text-align: right;
}

.message-card-body {
    padding: 1.5rem;
}

.message-subject h2 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.message-text {
    color: #374151;
    line-height: 1.6;
}

.message-card-footer {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

.message-card-footer .action-buttons {
    justify-content: flex-start;
}

/* Timeline */
.message-timeline {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.message-timeline h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline-icon {
    width: 3rem;
    height: 3rem;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 1;
}

.timeline-content h4 {
    color: #1f2937;
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.timeline-content p {
    color: #6b7280;
    margin: 0;
    font-size: 0.875rem;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    padding: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
}

.dropdown-item:hover {
    background: #f3f4f6;
    color: #2563eb;
}

.dropdown-button {
    background: none;
    border: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.dropdown-button:hover {
    background: #f3f4f6;
    color: #2563eb;
}

.logout-btn {
    background: none;
    border: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.logout-btn:hover {
    color: #2563eb;
    transform: translateY(-1px);
}

.mobile-nav-button {
    background: none;
    border: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.mobile-nav-button:hover {
    background: #f3f4f6;
    color: #2563eb;
}

/* Responsive Admin */
@media (max-width: 768px) {
    .message-content {
        grid-template-columns: 1fr;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .table-cell {
        padding: 0.5rem 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .table-header {
        display: none;
    }

    .message-header {
        flex-direction: column;
        gap: 1rem;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }
}

/* Print styles */
@media print {
    .navbar,
    .floating-circle,
    .floating-element,
    .floating-whatsapp-btn {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .section-title,
    .hero-title {
        color: black;
    }
}

