/* ===== COMMON STYLES ===== */
:root {
    --primary: #0056b3;
    --secondary: #6c757d;
    --success: #198754;
    --light: #f8f9fa;
    --dark: #1a1a1a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Navigation */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Active Navigation States */
.nav-link:focus {
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
}

.navbar-nav .nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    padding: 3rem 0;
    border-radius: 0 0 30px 30px;
}

/* Section Titles */
.section-title {
    position: relative;
    margin-bottom: 2rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 10px 25px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

/* Cards */
.service-card, .team-card, .feature-card {
    transition: transform 0.3s;
    height: 100%;
}

.service-card:hover, .team-card:hover, .feature-card:hover {
    transform: translateY(-5px);
}

/* Feature Icons */
.feature-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: white;
    padding: 3rem 0;
}

/* Contact Form */
.contact-form {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 2rem;
}

/* Stats */
.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
}

/* Process Steps */
.process-step {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.process-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Feature List */
.feature-list li {
    margin-bottom: 0.5rem;
}

.feature-list i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* Badges */
.guarantee-badge {
    background-color: var(--success);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 10px;
}

/* ===== HOME PAGE STYLES ===== */
.hero-section {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    padding: 4rem 0;
    border-radius: 0 0 30px 30px;
}

.phone-display {
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 15px;
    max-width: 300px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.phone-screen {
    background-color: #f0f0f0;
    border-radius: 10px;
    padding: 15px;
    height: 400px;
    color: #333;
    position: relative;
}

.phone-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.phone-button:hover {
    background-color: #d0d7e1;
}

.testimonial-card {
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
}

.star-rating {
    color: #ffc107;
}

.premium-feature-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    height: 100%;
}

.premium-feature-card:hover {
    transform: translateY(-5px);
}

/* ===== BEAUTIFUL CONTACT PAGE STYLES ===== */
.contact-hero {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff" fill-opacity="0.03" points="0,1000 1000,0 1000,1000"/></svg>');
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.15);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 86, 179, 0.25);
}

.contact-form-wrapper {
    padding: 3rem;
}

.contact-info-card {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    padding: 3rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="%23ffffff" fill-opacity="0.05" cx="800" cy="200" r="300"/><circle fill="%23ffffff" fill-opacity="0.05" cx="200" cy="800" r="400"/></svg>');
}

.contact-info-content {
    position: relative;
    z-index: 2;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.contact-details a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-details a:hover {
    opacity: 0.8;
}

.form-floating-custom {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-floating-custom .form-control {
    height: 60px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-floating-custom .form-control:focus {
    border-color: #0056b3;
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.1);
}

.form-floating-custom label {
    padding: 1rem 1.5rem;
    color: #6c757d;
    font-weight: 500;
}

.form-floating-custom textarea.form-control {
    height: 120px;
    resize: none;
}

.contact-feature {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.contact-feature:hover {
    transform: translateY(-5px);
}

.contact-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0056b3, #003d82);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-feature-icon i {
    font-size: 2rem;
    color: white;
}

.faq-accordion .accordion-item {
    border: none;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: white;
    border: none;
    padding: 1.5rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #0056b3;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #0056b3;
    color: white;
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230056b3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    padding: 2rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.cta-section {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="%23ffffff" fill-opacity="0.05" cx="200" cy="200" r="400"/><circle fill="%23ffffff" fill-opacity="0.05" cx="800" cy="800" r="300"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 2;
}

.btn-glow {
    background: linear-gradient(135deg, #0056b3, #003d82);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 86, 179, 0.6);
    color: white;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

/* ===== SERVICES PAGE STYLES ===== */
.pricing-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    background: linear-gradient(135deg, #0056b3, #003d82);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-body {
    padding: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    margin: 1rem 0;
}

.price-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.service-feature-list {
    list-style: none;
    padding: 0;
}

.service-feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-feature-list li:last-child {
    border-bottom: none;
}

/* ===== ABOUT US PAGE STYLES ===== */
.team-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-card img {
    height: 300px;
    object-fit: cover;
}

.values-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.values-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .contact-hero {
        padding: 3rem 0;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-info-card {
        padding: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .btn-primary {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: linear-gradient(135deg, #0056b3, #003d82);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-soft {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.shadow-medium {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.shadow-strong {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.rounded-large {
    border-radius: 20px;
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn-loading {
    position: relative;
    color: transparent;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary: #004494;
        --secondary: #495057;
    }
    
    .btn-primary {
        border: 2px solid var(--primary);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ===== BEAUTIFUL SERVICES PAGE STYLES ===== */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="%23ffffff" fill-opacity="0.03" cx="200" cy="200" r="400"/><circle fill="%23ffffff" fill-opacity="0.03" cx="800" cy="800" r="300"/><polygon fill="%23ffffff" fill-opacity="0.02" points="1000,0 1000,500 500,1000 0,1000 0,0"/></svg>');
}

.service-hero-image {
    position: relative;
    display: inline-block;
}

.service-hero-image i {
    font-size: 8rem;
    color: white;
    position: relative;
    z-index: 3;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: 1;
}

.pulse-ring.ring-2 {
    animation-delay: 0.7s;
    width: 250px;
    height: 250px;
}

.pulse-ring.ring-3 {
    animation-delay: 1.4s;
    width: 300px;
    height: 300px;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.service-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Section Styling */
.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.section-description {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Feature Cards */
.service-feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.service-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.15);
}

.service-feature-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.service-feature-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.service-feature-card.premium {
    border: 2px solid #ffd700;
}

.popular-badge, .premium-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.premium-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #003d82);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.service-feature-card h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.service-feature-list li {
    padding: 0.5rem 0;
    color: #555;
}

.service-feature-list i {
    color: var(--success);
    margin-right: 0.5rem;
}

.service-price {
    margin-bottom: 1.5rem;
}

.service-price .price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
}

.service-price .period {
    color: #6c757d;
    font-size: 1rem;
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.service-cta-btn:hover {
    background: #004494;
    color: white;
    transform: translateX(5px);
}

/* Service Grid Cards */
.service-grid-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.service-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.15);
}

.service-grid-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #003d82);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-grid-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-grid-content {
    flex: 1;
}

.service-grid-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-grid-description {
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-grid-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-grid-features li {
    padding: 0.3rem 0;
    color: #555;
}

.service-grid-features i {
    color: var(--success);
    margin-right: 0.5rem;
}

.service-grid-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-grid-link:hover {
    gap: 1rem;
    color: #004494;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.15);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.enterprise {
    border: 2px solid #28a745;
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.pricing-card.popular .pricing-header {
    background: linear-gradient(135deg, var(--primary), #003d82);
    color: white;
}

.pricing-header h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.decimal {
    font-size: 1.5rem;
    font-weight: 600;
}

.price-period {
    color: #6c757d;
    margin-bottom: 1rem;
}

.pricing-card.popular .price-period {
    color: rgba(255, 255, 255, 0.8);
}

.plan-description {
    font-size: 0.9rem;
    color: #6c757d;
}

.pricing-card.popular .plan-description {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-body {
    padding: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-included {
    color: #333;
}

.feature-included i {
    color: var(--success);
}

.feature-excluded {
    color: #6c757d;
}

.feature-excluded i {
    color: #6c757d;
}

.pricing-cta-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-cta-btn:hover {
    background: #004494;
    color: white;
    transform: translateY(-2px);
}

.pricing-cta-btn.popular {
    background: white;
    color: var(--primary);
}

.pricing-cta-btn.popular:hover {
    background: #f8f9fa;
    color: var(--primary);
}

/* Guarantee Card */
.guarantee-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.guarantee-title {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.guarantee-text {
    color: #6c757d;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="%23ffffff" fill-opacity="0.05" cx="200" cy="200" r="400"/><circle fill="%23ffffff" fill-opacity="0.05" cx="800" cy="800" r="300"/></svg>');
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero {
        padding: 4rem 0;
        text-align: center;
    }
    
    .service-hero-image i {
        font-size: 5rem;
    }
    
    .pulse-ring {
        width: 150px;
        height: 150px;
    }
    
    .pulse-ring.ring-2 {
        width: 200px;
        height: 200px;
    }
    
    .pulse-ring.ring-3 {
        width: 250px;
        height: 250px;
    }
    
    .service-feature-card.popular {
        transform: none;
    }
    
    .service-feature-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .service-grid-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .service-feature-card,
    .service-grid-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

/* ===== BEAUTIFUL ABOUT US PAGE STYLES ===== */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="%23ffffff" fill-opacity="0.03" cx="200" cy="200" r="400"/><circle fill="%23ffffff" fill-opacity="0.03" cx="800" cy="800" r="300"/><polygon fill="%23ffffff" fill-opacity="0.02" points="1000,0 1000,500 500,1000 0,1000 0,0"/></svg>');
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-circle {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.main-circle i {
    font-size: 4rem;
    color: white;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.2rem;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 10%;
    right: 20%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

.card-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Journey Section */
.journey-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.journey-content {
    position: relative;
}

.journey-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.journey-item::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 40px;
    bottom: -3rem;
    width: 2px;
    background: var(--primary);
    opacity: 0.3;
}

.journey-item:last-child::before {
    display: none;
}

.journey-year {
    width: 90px;
    height: 90px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.journey-milestone {
    flex: 1;
    padding-top: 1rem;
}

.journey-milestone h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.journey-milestone p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.journey-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-bar {
    width: 4px;
    height: 300px;
    background: linear-gradient(to bottom, var(--primary), #003d82);
    border-radius: 2px;
    position: relative;
}

.milestone-point {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.point-dot {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--primary);
    margin: 0 auto 0.5rem;
}

.point-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.point-1 { top: 10%; }
.point-2 { top: 35%; }
.point-3 { top: 65%; }
.point-4 { top: 90%; }

/* Values Section */
.values-section {
    padding: 6rem 0;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #003d82);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.value-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.value-feature {
    background: #f8f9fa;
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateX(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary);
    color: white;
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.expertise-tag {
    background: #f8f9fa;
    color: #555;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* About CTA Section */
.about-cta {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="%23ffffff" fill-opacity="0.05" cx="200" cy="200" r="400"/><circle fill="%23ffffff" fill-opacity="0.05" cx="800" cy="800" r="300"/></svg>');
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 2rem;
    }
    
    .floating-card {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .journey-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .journey-item::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .journey-year {
        width: 70px;
        height: 70px;
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .value-card,
    .team-card {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

/* Animation for counting numbers */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number.animated {
    animation: countUp 1s ease-out;
}







/* ===== BEAUTIFUL HOME PAGE STYLES ===== */

/* Modern Hero Section */
/* ===== OPTIMIZED MODERN HERO SECTION ===== */

.modern-hero {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="%23ffffff" fill-opacity="0.03" cx="200" cy="200" r="400"/><circle fill="%23ffffff" fill-opacity="0.03" cx="800" cy="800" r="300"/></svg>');
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.text-gradient {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.feature-item i {
    color: #ffd700;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-trust {
    text-align: left;
}

.trust-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.trust-logos {
    display: flex;
    gap: 1rem;
}

.trust-logo {
    font-size: 1.5rem;
    opacity: 0.7;
}

/* Optimized Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.phone-mockup {
    width: 280px;
    height: 500px;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.phone-screen {
    background: white;
    border-radius: 25px;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-interface {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: linear-gradient(135deg, #0056b3, #003d82);
    color: white;
    padding: 1rem;
    text-align: center;
}

.app-status {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.8;
}

.app-content {
    flex: 1;
    padding: 1rem;
    background: #f8f9fa;
}

.recent-calls {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.call-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.call-item.active {
    border-left: 3px solid var(--primary);
}

.call-item:hover {
    transform: translateX(5px);
}

.call-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), #003d82);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

.call-details {
    flex: 1;
}

.call-name {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.call-company {
    color: #6c757d;
    font-size: 0.8rem;
}

.call-status {
    font-size: 1rem;
}

.app-footer {
    display: flex;
    justify-content: space-around;
    padding: 0.8rem;
    background: white;
    border-top: 1px solid #e9ecef;
}

.nav-item {
    padding: 0.5rem;
    color: #6c757d;
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.nav-item.active {
    color: var(--primary);
}

.nav-item:hover {
    color: var(--primary);
}

/* Stats Bar */
.stats-bar {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6c757d;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #003d82);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.feature-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.feature-list li {
    padding: 0.4rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.feature-list i {
    color: var(--success);
}

/* Problem Solution Section */
.problem-solution {
    padding: 4rem 0;
    background: white;
}

.problem-content {
    padding-right: 2rem;
}

.problem-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.problem-item i {
    color: #ff4757;
    font-size: 1.3rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.problem-item h5 {
    color: #333;
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.problem-item p {
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
    font-size: 0.9rem;
}

.solution-visual {
    display: flex;
    justify-content: center;
}

.solution-card {
    background: linear-gradient(135deg, var(--primary), #003d82);
    color: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.2);
    max-width: 350px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header i {
    font-size: 1.8rem;
    color: #ffd700;
}

.card-header h4 {
    margin: 0;
    font-weight: 600;
    font-size: 1.3rem;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.solution-item:last-child {
    margin-bottom: 0;
}

.solution-item i {
    font-size: 1.3rem;
    color: #ffd700;
    flex-shrink: 0;
}

.solution-item h5 {
    margin: 0 0 0.2rem 0;
    font-weight: 600;
    font-size: 1rem;
}

.solution-item p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.85rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.testimonial-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h5 {
    margin: 0 0 0.2rem 0;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

.reviewer-info p {
    margin: 0;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.star-rating {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-content p {
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
    font-size: 0.9rem;
}

/* Home CTA Section */
.home-cta {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.home-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="%23ffffff" fill-opacity="0.05" cx="200" cy="200" r="400"/><circle fill="%23ffffff" fill-opacity="0.05" cx="800" cy="800" r="300"/></svg>');
}

.cta-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.8;
    font-size: 0.85rem;
}

/* Animation for counting numbers */
.stat-number {
    transition: all 1s ease-out;
}

.stat-number.animated {
    animation: countUp 1s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
        font-size: 1rem;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-visual {
        height: 350px;
        margin-top: 2rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 450px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .problem-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .modern-hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .phone-mockup {
        width: 220px;
        height: 400px;
    }
    
    .features-section,
    .problem-solution,
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .home-cta {
        padding: 2.5rem 0;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}