/* =================================
   RAJONA - Premium SaaS Landing Page
   Dark Theme with Orange & Blue Gradients
   ================================= */

:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --dark-bg: #0A0E27;
    --darker-bg: #050814;
    --light-text: #E8E8E8;
    --gray-text: #B0B0B0;
    --accent-blue: #0099FF;
    --accent-orange: #FF9F1C;
    --success-color: #00D084;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #004E89 100%);
    --gradient-secondary: linear-gradient(135deg, #004E89 0%, #0099FF 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =================================
   PRELOADER
   ================================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 0.6s ease-in-out forwards;
    animation-delay: 1s;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid var(--secondary-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* =================================
   NAVBAR
   ================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 2rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--primary-color);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.logo-text {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu .cta-button {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cart-btn {
    position: relative;
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-btn:hover {
    transform: scale(1.15);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -5px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* =================================
   BUTTONS
   ================================= */
.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* =================================
   HERO SECTION
   ================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 153, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.hero-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qr-mockup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.qr-device {
    position: relative;
    z-index: 2;
}

.phone-frame {
    width: 280px;
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 12px solid #1a1a1a;
    border-radius: 50px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 
                0 0 40px rgba(255, 107, 53, 0.2);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 25px 25px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.screen-header {
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    width: 100px;
}

.qr-code {
    width: 200px;
    height: 200px;
    background: white;
    border: 2px solid #333;
    border-radius: 12px;
    margin: 1rem 0;
}

.qr-code svg {
    width: 100%;
    height: 100%;
}

.screen-text {
    margin-top: 1rem;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

.qr-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 4s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* =================================
   SECTION HEADER
   ================================= */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-text);
}

/* =================================
   PROBLEM SECTION
   ================================= */
.problem {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.problem-card {
    padding: 2rem;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.problem-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.problem-card p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

/* =================================
   SOLUTION SECTION
   ================================= */
.solution {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(0, 78, 137, 0.05) 0%, rgba(10, 14, 39, 1) 100%);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(0, 153, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.solution-card:hover {
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.15) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-color: var(--accent-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 153, 255, 0.1);
}

.solution-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.solution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.solution-card p {
    color: var(--gray-text);
}

/* =================================
   HOW IT WORKS SECTION
   ================================= */
.how-it-works {
    padding: 6rem 0;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.step-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

.step-divider {
    flex: 1;
    min-width: 100px;
    max-width: 150px;
    height: 40px;
    display: flex;
    align-items: center;
}

.step-divider svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
    }
    
    .step-divider {
        display: none;
    }
}

/* =================================
   FEATURES SECTION
   ================================= */
.features {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: rgba(0, 153, 255, 0.05);
    border: 1px solid rgba(0, 153, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(0, 153, 255, 0.15);
    border-color: var(--accent-blue);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 153, 255, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

/* =================================
   DASHBOARD SECTION
   ================================= */
.dashboard {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(0, 78, 137, 0.05) 0%, rgba(10, 14, 39, 1) 100%);
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dashboard-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.dashboard-text p {
    color: var(--gray-text);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.dashboard-features {
    list-style: none;
}

.dashboard-features li {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.dashboard-features i {
    color: var(--success-color);
    font-size: 1.3rem;
}

.dashboard-mockup {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(0, 153, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.mockup-header {
    height: 35px;
    background: #0f3460;
    border-bottom: 1px solid rgba(0, 153, 255, 0.1);
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.mockup-buttons {
    display: flex;
    gap: 0.5rem;
}

.mockup-buttons span {
    width: 12px;
    height: 12px;
    background: rgba(0, 153, 255, 0.3);
    border-radius: 50%;
}

.mockup-content {
    padding: 2rem;
}

.mockup-bar {
    height: 20px;
    background: rgba(0, 153, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.mockup-chart {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 4px;
    min-height: 20px;
}

/* =================================
   COMPARISON SECTION
   ================================= */
.comparison {
    padding: 6rem 0;
}

.comparison-table {
    background: rgba(0, 78, 137, 0.1);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 153, 255, 0.2);
}

.table-header, .table-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 153, 255, 0.1);
    align-items: center;
}

.table-header {
    background: rgba(255, 107, 53, 0.05);
    font-weight: 700;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background: rgba(0, 153, 255, 0.05);
}

.header-cell {
    font-weight: 700;
    color: var(--primary-color);
}

.header-cell.rajona {
    color: var(--accent-blue);
}

.row-cell i {
    margin-right: 0.5rem;
}

.row-cell i.fa-check {
    color: var(--success-color);
}

.row-cell i.fa-times {
    color: #FF6B6B;
}

/* =================================
   INDUSTRIES SECTION
   ================================= */
.industries {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 153, 255, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-card:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(0, 153, 255, 0.15) 100%);
    border-color: var(--accent-blue);
    transform: translateY(-8px);
}

.industry-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.industry-card h3 {
    font-size: 1.1rem;
}

/* =================================
   PRICING SECTION
   ================================= */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(0, 78, 137, 0.05) 0%, rgba(10, 14, 39, 1) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    padding: 2.5rem;
    background: rgba(0, 78, 137, 0.1);
    border: 1px solid rgba(0, 153, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 78, 137, 0.15) 100%);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.25);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1rem;
    font-weight: 400;
}

.amount {
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.subtitle {
    color: var(--gray-text);
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 153, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--light-text);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success-color);
}

.pricing-features i.opacity {
    opacity: 0.3;
    color: var(--gray-text);
}

/* =================================
   TESTIMONIALS SECTION
   ================================= */
.testimonials {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    padding: 2rem;
    background: rgba(0, 153, 255, 0.05);
    border: 1px solid rgba(0, 153, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(0, 153, 255, 0.1);
    border-color: var(--accent-blue);
    transform: translateY(-10px);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #FFD700;
    margin-right: 0.25rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--gray-text);
}

/* =================================
   FAQ SECTION
   ================================= */
.faq {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(0, 78, 137, 0.05) 0%, rgba(10, 14, 39, 1) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 153, 255, 0.1);
    margin-bottom: 1.5rem;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 1.5rem 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray-text);
    line-height: 1.8;
}

/* =================================
   CONTACT SECTION
   ================================= */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, rgba(0, 78, 137, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Left Side: Heading and Map */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-heading h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--light-text);
    margin: 0;
    animation: slideInDown 0.6s ease;
}

.contact-heading .highlight-blue {
    color: var(--accent-blue);
}

.contact-heading .highlight-pink {
    color: #FF6B9D;
}

.contact-map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    animation: slideInLeft 0.6s ease 0.2s backwards;
}

/* Right Side: Form Card */
.contact-right {
    animation: slideInRight 0.6s ease 0.2s backwards;
}

.form-card {
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.15) 0%, rgba(0, 153, 255, 0.1) 100%);
    border: 1px solid rgba(0, 153, 255, 0.2);
    border-radius: 30px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 153, 255, 0.1);
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,50 Q250,10 500,50 T1000,50 L1000,0 L0,0 Z" fill="%23ffffff" opacity="0.1"/></svg>') repeat-x;
    background-size: contain;
    opacity: 0.3;
    pointer-events: none;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    position: relative;
    z-index: 1;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease forwards;
}

.form-group:nth-child(1) { animation-delay: 0.4s; }
.form-group:nth-child(2) { animation-delay: 0.5s; }
.form-group:nth-child(3) { animation-delay: 0.6s; }
.form-group:nth-child(4) { animation-delay: 0.7s; }

.form-input {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 107, 157, 0.2);
    border-radius: 10px;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 500;
}

.form-input::placeholder {
    color: rgba(100, 100, 100, 0.6);
    font-weight: 400;
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 1);
    border-color: #FF6B9D;
    box-shadow: 
        0 0 30px rgba(255, 107, 157, 0.2),
        inset 0 0 10px rgba(255, 107, 157, 0.05);
    transform: translateY(-2px);
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
    font-family: 'Poppins', sans-serif;
}

.btn-submit-modern {
    padding: 1.1rem 2.5rem;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8FAB 100%);
    border: none;
    border-radius: 25px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
    animation: fadeInUp 0.6s ease 0.8s backwards;
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.btn-submit-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

.btn-submit-modern:hover::before {
    left: 100%;
}

.btn-submit-modern:active {
    transform: translateY(-1px);
}

.form-note {
    font-size: 0.9rem;
    color: rgba(100, 100, 100, 0.8);
    margin-top: 1rem;
    animation: fadeInUp 0.6s ease 0.9s backwards;
    text-align: center;
}

.form-note::before {
    content: '✓ ';
    color: #00C851;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-heading h2 {
        font-size: 2.2rem;
    }
    
    .form-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 0;
    }
    
    .contact-heading h2 {
        font-size: 1.8rem;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        padding: 2rem;
    }
    
    .contact-map-container {
        height: 300px;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =================================
   FOOTER
   ================================= */
.footer {
    padding: 4rem 0 2rem;
    background: var(--darker-bg);
    border-top: 1px solid rgba(0, 153, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--light-text);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--gray-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-column p {
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 153, 255, 0.1);
    border: 1px solid rgba(0, 153, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 153, 255, 0.1);
    color: var(--gray-text);
}

.footer-bottom i {
    color: var(--primary-color);
}

/* =================================
   UTILITY CLASSES
   ================================= */
.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    position: relative;
}

/* =================================
   ALERT MESSAGES
   ================================= */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideInUp 0.3s ease-out;
}

.alert-success {
    background: rgba(0, 208, 132, 0.1);
    border: 1px solid rgba(0, 208, 132, 0.3);
    color: #00D084;
}

.alert-error {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #FF4757;
}

/* =================================
   FORM STYLES
   ================================= */
select {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    color: var(--light-text);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

select option {
    background: var(--darker-bg);
    color: var(--light-text);
}

textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    color: var(--light-text);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
}
.youtube-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 20, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.youtube-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: var(--darker-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2001;
}

.modal-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* =================================
   RESPONSIVE DESIGN
   ================================= */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--darker-bg);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 500px;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 153, 255, 0.1);
    }
    
    .hero {
        padding: 6rem 0 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .table-header, .table-row {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .problems-grid,
    .solution-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container-fluid {
        padding: 0 1rem;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .qr-mockup {
        height: 400px;
    }
    
    .phone-frame {
        width: 200px;
        height: 380px;
    }
    
    .demo-form-container {
        padding: 1.5rem;
    }
    
    .form-box h3 {
        font-size: 1.4rem;
    }
    
    .whatsapp-form input,
    .whatsapp-form textarea {
        font-size: 16px;
    }
    
    .modal-content {
        width: 95%;
        max-width: 100%;
    }
    
    .video-container {
        min-height: 250px;
    }
    
    .logo {
        font-size: 1.5rem;
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* =================================
   ANIMATIONS
   ================================= */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: slideInUp 0.6s ease-out forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
