/* Common Styles for WebGoldySoft Tools */

:root {
    --primary: #a86e00;
    --secondary: #a29bfe;
    --success: #00b894;
    --warning: #fdcb6e;
    --danger: #e74c3c;
    --info: #74b9ff;
    --dark: #2d3436;
    --light: #ddd;
    --radius: 12px;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --gradient: linear-gradient(150deg,#0a101f,#0e1730);
    --transition: all 0.3s ease;
}

* {
    font-family: 'Cairo', sans-serif;
}

body {
    background: #fafbfe;
    min-height: 100vh;
}

/* Tool Header */
.tool-header {
    background: var(--gradient);
    color: white;
    padding: 3rem 0 2rem 0;
    margin-bottom: 2rem;
    border-radius: 0 0 20px 20px;
}

.tool-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tool-header .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-badge {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.tool-stats {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.stat {
    text-align: center;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Tool Sections */
.tool-section {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
}

.tool-section h3 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Tips */
.tip-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #f1f3f4;
    height: 100%;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.tip-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.tip-card h5 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Tool Footer */
.tool-footer {
    background: var(--gradient);
    color: white;
    padding: 3rem 0 1rem 0;
    margin-top: 3rem;
}

.tool-footer h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.tool-footer p {
    opacity: 0.9;
    line-height: 1.6;
}

.feature-highlights {
    margin-top: 1.5rem;
}

.feature-highlights h6 {
    font-weight: 600;
    margin-bottom: 0.8rem;
    opacity: 0.95;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.3rem 0;
    opacity: 0.85;
    font-size: 0.9rem;
}

.feature-list li:before {
    content: "✓ ";
    color: #00b894;
    font-weight: bold;
    margin-left: 0.5rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.stat-icon {
    font-size: 1.5rem;
    margin-left: 1rem;
    opacity: 0.8;
}

.stat-content {
    text-align: right;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.social-link {
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    opacity: 0.8;
}

.social-link:hover {
    color: white;
    opacity: 1;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tool-header {
        padding: 2rem 0 1.5rem 0;
    }
    
    .tool-header h1 {
        font-size: 2rem;
    }
    
    .tool-header .lead {
        font-size: 1rem;
    }
    
    .tool-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}