:root {
    --primary-color: #314261;
    --primary-dark: #253450;
    --primary-light: rgba(49, 66, 97, 0.1);
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar Styles */
#mainNav {
    background-color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}

.navbar-brand img {
    transition: all 0.3s ease-in-out;
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease-in-out;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 120px 0;
    overflow: hidden;
    min-height: 100vh;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
}

.btn-store i {
    font-size: 2rem;
}

.btn-store span {
    text-align: left;
    line-height: 1.2;
}

.btn-store small {
    display: block;
    opacity: 0.8;
    font-size: 0.8rem;
}

.hero-image-wrapper {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iphone-mockup-img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.mockup-2 {
    transform: perspective(1000px) rotateY(15deg);
}

.features-showcase {
    position: relative;
    height: 700px;
}

.mockup-group {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.mockup-1 {
    transform: rotate(-15deg) translateX(-50px);
}

.screen-1, .frame-1 {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-10deg);
}

.screen-2, .frame-2 {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(10deg);
}

.screen-1 {
    z-index: 2;
}

.frame-1 {
    z-index: 3;
}

.screen-2 {
    z-index: 4;
}

.frame-2 {
    z-index: 5;
}

.features-shape {
    position: absolute;
    top: 50%;
    right: -100px;
    width: 200px;
    height: 200px;
    background: rgba(49, 66, 97, 0.1);
    border-radius: 50%;
    transform: translateY(-50%);
}

.features-notification {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
    z-index: 6;
}

/* Partners Section */
.partners-section {
    background: #f8f9fa;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.partner-category {
    text-align: center;
}

.category-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.partner-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.partner-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.partner-item img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
}

/* Advantage Cards */
.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.advantage-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.advantage-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.advantage-list li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Partner Logos */
.partner-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Contact Form */
.contact-form .form-control,
.contact-form .form-select {
    padding: 0.75rem;
    border: 1px solid #ddd;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(49, 66, 97, 0.25);
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 24px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    position: relative;
}

.footer-top {
    position: relative;
    z-index: 1;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact li {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-contact i {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-btn:hover {
    background: rgba(255,255,255,0.2);
    color: white;
}

.app-btn i {
    font-size: 2rem;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-legal a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(49, 66, 97, 0.3);
}

/* Section Headings */
.section-heading {
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease-in-out;
    border: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    color: var(--primary-color);
}

/* Solution Cards */
.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-10px);
}

.solution-card.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 15px 40px rgba(49, 66, 97, 0.2);
}

.solution-card.active .solution-features li {
    color: rgba(255,255,255,0.8);
}

.solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.solution-features li {
    margin-bottom: 0.75rem;
    color: #666;
}

.solution-features li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Utility Classes */
.bg-primary-light {
    background-color: rgba(49, 66, 97, 0.1);
}

.bg-secondary-light {
    background-color: rgba(76, 175, 80, 0.1);
}

.bg-success-light {
    background-color: rgba(40, 167, 69, 0.1);
}

/* Partners Slider */
.partners-slider {
    position: relative;
    padding: 2rem 0;
    margin-top: 3rem;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.partners-slider:active {
    cursor: grabbing;
}

.slider-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.slider-track {
    display: flex;
    animation: none;
    width: calc(200px * 20);
}

.partner-slide {
    flex: 0 0 200px;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.partner-slide img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Solutions Section */
.solutions-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 40%);
}

.solutions-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.solution-box {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solution-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.solution-box:hover .solution-image img {
    transform: scale(1.1);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.solution-info h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-circle {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    position: relative;
    overflow: hidden;
}

.stat-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 2s infinite;
}

.stat-item span {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.features li {
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.features li i {
    margin-right: 1rem;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-action:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .solutions-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .solutions-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .hero-image-wrapper,
    .features-showcase {
        display: none;
    }
}

/* iPhone Mockup Styles */
.iphone-mockup {
    position: relative;
    width: 280px;
    height: 570px;
    margin: 0 auto;
    transform: perspective(2000px) rotateY(-15deg);
    transform-style: preserve-3d;
}

.iphone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 48px;
    box-shadow: 
        -10px 10px 32px rgba(0,0,0,0.2),
        inset -8px 0 15px rgba(255,255,255,0.05),
        inset 2px 0 10px rgba(0,0,0,0.2);
    padding: 12px;
    border: 1px solid #2a2a2a;
    overflow: hidden;
}

.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 35px;
    background: #1a1a1a;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notch::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}

.screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
    border-radius: 36px 36px 0 0;
}

.button-right {
    position: absolute;
    right: -2px;
    top: 120px;
    width: 3px;
    height: 80px;
    background: #2a2a2a;
    border-radius: 2px;
    box-shadow: inset -1px 0 3px rgba(0,0,0,0.3);
}

.button-left {
    position: absolute;
    left: -2px;
    top: 100px;
    width: 3px;
    height: 30px;
    background: #2a2a2a;
    border-radius: 2px;
    box-shadow: inset 1px 0 3px rgba(0,0,0,0.3);
}

.button-left::before {
    content: '';
    position: absolute;
    left: 0;
    top: 45px;
    width: 3px;
    height: 60px;
    background: #2a2a2a;
    border-radius: 2px;
    box-shadow: inset 1px 0 3px rgba(0,0,0,0.3);
}

.mockup-2 {
    transform: perspective(2000px) rotateY(15deg);
}

.features-showcase .mockup-group {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 2rem;
}

/* Floating Cards */
.floating-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    z-index: 10;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-card span {
    font-weight: 500;
    color: var(--primary-color);
}

.card-1 {
    top: 15%;
    left: -20px;
    animation: float 3s ease-in-out infinite;
}

.card-2 {
    top: 40%;
    right: -20px;
    animation: float 3s ease-in-out infinite 0.5s;
}

.card-3 {
    bottom: 15%;
    left: -20px;
    animation: float 3s ease-in-out infinite 1s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 991px) {
    .iphone-mockup {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .mockup-2 {
        transform: none;
    }
}

/* Contact Section Styles */
.contact-section {
    background-color: var(--light-gray);
    position: relative;
}

.contact-form-wrapper {
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.form-floating {
    margin-bottom: 1.5rem;
}

.form-control, .form-select {
    border: 2px solid #eee;
    padding: 1rem;
    height: calc(3.5rem + 2px);
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23314261' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-size: 16px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(49, 66, 97, 0.1);
    background-color: white;
}

.form-floating > label {
    padding: 1rem;
    color: #666;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    color: var(--primary-color);
    opacity: 1;
    transform: scale(0.85) translateY(-1rem) translateX(0.15rem);
}

.form-floating textarea.form-control {
    height: 150px;
}

.form-check {
    padding-left: 2rem;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: -2rem;
    border: 2px solid #eee;
    cursor: pointer;
}

.form-check-label {
    color: #666;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary {
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(49, 66, 97, 0.2);
}

.contact-info-wrapper {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.card-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.card-content p {
    margin-bottom: 0;
    color: #666;
}

.card-content p.text-muted {
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.social-links {
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .contact-info-wrapper {
        margin-bottom: 2rem;
    }
} 