/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: bold;
}

.logo span {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.menu-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

/* Search Section */
.search-section {
    margin-bottom: 40px;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1.1rem;
}

.input-group input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.input-group input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.25);
}

.search-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.search-btn:hover {
    background: linear-gradient(135deg, #c82333, #a71e2a);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220,53,69,0.3);
}

/* Results Section */
.results-section {
    margin-bottom: 40px;
}

.results-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.results-header {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 20px;
    text-align: center;
}

.results-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.results-content {
    padding: 30px;
}

.results-title {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 15px;
    margin: -30px -30px 20px -30px;
    font-weight: bold;
    font-size: 1.1rem;
}

.results-text {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.6;
}

.new-search-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.new-search-btn:hover {
    background: linear-gradient(135deg, #c82333, #a71e2a);
    transform: translateY(-1px);
}

/* WhatsApp Contact */
.whatsapp-contact {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 10px;
    font-size: 1.1rem;
}

.whatsapp-contact a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.whatsapp-contact a:hover {
    border-bottom-color: #fff;
}

/* Features Section */
.features-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.features-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 2rem;
}

.features-list {
    max-width: 600px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: #e9ecef;
    transform: translateX(5px);
}

.feature-number {
    color: #dc3545;
    font-weight: bold;
    margin-right: 10px;
    min-width: 25px;
}

.feature-text {
    flex: 1;
    direction: rtl;
    text-align: right;
    font-size: 1rem;
    line-height: 1.5;
}

.guarantee {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Information Sections */
.info-section {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.info-section h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 3px solid #dc3545;
    padding-bottom: 10px;
}

.info-section h3 {
    color: #555;
    margin: 25px 0 15px 0;
    font-size: 1.2rem;
}

.info-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #666;
}

.link {
    color: #007bff;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,123,255,0.3);
    transition: all 0.3s ease;
}

.link:hover {
    color: #0056b3;
    border-bottom-color: #0056b3;
}

.features-detailed {
    margin: 20px 0;
    padding-left: 20px;
}

.features-detailed li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #666;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
    transition: all 0.3s ease;
    font-weight: bold;
}

.whatsapp-float a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
}

.whatsapp-float i {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .features-section,
    .info-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .features-section h2 {
        font-size: 1.5rem;
    }
    
    .feature-item {
        padding: 10px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        padding: 12px 15px;
    }
    
    .whatsapp-float span {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .input-group input {
        padding: 12px 12px 12px 40px;
    }
    
    .search-btn {
        padding: 12px;
        font-size: 1rem;
    }
    
    .results-content {
        padding: 20px;
    }
    
    .results-title {
        margin: -20px -20px 15px -20px;
        padding: 12px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}