/* Tools Page Styles */

:root {
    --primary-color: #00cfff;
    --secondary-color: #0066cc;
    --dark-bg: #0a0a14;
    --darker-bg: #050510;
    --light-text: #ffffff;
    --muted-text: rgba(255, 255, 255, 0.7);
    --gold-accent: #ffc107;
    --border-color: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(20, 20, 40, 0.7);
    --hover-bg: rgba(0, 207, 255, 0.1);
}

/* Hero Section */
.tools-hero {
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.9) 0%, rgba(30, 30, 60, 0.9) 100%), url('images/new/serious-professional-businessmen-using-desktop-com-TFYFKQ4.jpeg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.tools-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 207, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.tools-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.tools-hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.tools-hero-content h1 span {
    color: #E53935;
    position: relative;
}

.tools-hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.tools-hero-content p {
    font-size: 1.2em;
    max-width: 600px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.tools-hero-buttons {
    display: flex;
    gap: 15px;
}

.tools-hero-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tools-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.tools-hero-image:hover img {
    transform: scale(1);
}

.tools-hero-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tools-hero-badge span:first-child {
    font-size: 1.5em;
}

.tools-hero-badge span:last-child {
    font-size: 0.8em;
    opacity: 0.9;
}

/* Tools Overview Section */
.tools-overview {
    background-color: var(--dark-bg);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tool-card {
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.7) 0%, rgba(20, 20, 40, 0.7) 100%);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 207, 255, 0.3);
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 207, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tool-icon i {
    font-size: 2em;
    color: var(--primary-color);
}

.tool-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: white;
}

.tool-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tool-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.tool-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.tool-features li i {
    color: var(--primary-color);
    margin-top: 3px;
}

.tool-cta {
    margin-top: auto;
}

/* Tools Showcase Section */
.tools-showcase {
    background-color: var(--darker-bg);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.showcase-item {
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.7) 0%, rgba(20, 20, 40, 0.7) 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 207, 255, 0.3);
}

.showcase-video {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.showcase-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover .showcase-video img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 207, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button i {
    color: white;
    font-size: 1.5em;
}

.play-button:hover {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.showcase-content {
    padding: 25px;
}

.showcase-content h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: white;
}

.showcase-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Tools Comparison Section */
.tools-comparison {
    background-color: var(--dark-bg);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.7) 0%, rgba(20, 20, 40, 0.7) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-weight: 600;
    font-size: 1.1em;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    color: white;
}

.comparison-table td {
    color: rgba(255, 255, 255, 0.8);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.comparison-table i.fa-check {
    color: var(--primary-color);
    font-size: 1.2em;
}

.comparison-table i.fa-times {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2em;
}

.comparison-table tr:last-child td {
    font-weight: 700;
    font-size: 1.1em;
}

.comparison-table tr:last-child td:nth-child(2) {
    color: var(--primary-color);
}

/* Tools Testimonials Section */
.tools-testimonials {
    background-color: var(--darker-bg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.7) 0%, rgba(20, 20, 40, 0.7) 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 207, 255, 0.3);
}

.testimonial-quote {
    position: relative;
    margin-bottom: 25px;
}

.testimonial-quote::before {
    content: '\201C';
    font-size: 4em;
    color: rgba(0, 207, 255, 0.2);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-quote p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.author-info h4 {
    margin: 0 0 5px;
    color: white;
}

.author-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}

/* Tools Pricing Section */
.tools-pricing {
    background-color: var(--dark-bg);
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.7) 0%, rgba(20, 20, 40, 0.7) 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 207, 255, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-accent);
    color: var(--dark-bg);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 700;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 1.5em;
    margin: 0 0 15px;
    color: white;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-right: 5px;
}

.amount {
    font-size: 3em;
    font-weight: 700;
    color: white;
}

.period {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 5px;
}

.price-savings {
    color: var(--gold-accent);
    font-weight: 600;
    margin-top: 10px;
}

.bundle-info {
    color: var(--primary-color);
    font-weight: 600;
    margin: 10px 0 0;
}

.pricing-features {
    padding: 30px;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features ul li i {
    color: var(--primary-color);
    margin-top: 3px;
}

.pricing-cta {
    padding: 0 30px 30px;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-guarantee i {
    color: var(--gold-accent);
    font-size: 1.2em;
}

/* Tools FAQ Section */
.tools-faq {
    background-color: var(--darker-bg);
}

.faq-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.7) 0%, rgba(20, 20, 40, 0.7) 100%);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 207, 255, 0.3);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1em;
    color: white;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 207, 255, 0.1);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .tools-hero .container {
        grid-template-columns: 1fr;
    }
    
    .tools-hero-content {
        text-align: center;
    }
    
    .tools-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .tools-hero-buttons {
        justify-content: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tools-hero {
        padding: 100px 0 60px;
    }
    
    .tools-hero-content h1 {
        font-size: 2.5em;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .tools-hero-content h1 {
        font-size: 2em;
    }
    
    .tools-hero-buttons {
        flex-direction: column;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
}


/* Featured Tool Cards - New Tools */
.tool-card.featured {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 3px solid #FFD700;
    transform: scale(1.02);
}

.tool-card.featured .tool-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.tool-card.featured h3,
.tool-card.featured p,
.tool-card.featured li {
    color: white;
}

.tool-card.featured .tool-features li i {
    color: #FFD700;
}

.tool-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FFD700;
    color: #1a1a2e;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tool-card.featured:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.4);
}

.tool-card.featured .btn-primary {
    background: white;
    color: #667eea;
    font-weight: 700;
}

.tool-card.featured .btn-primary:hover {
    background: #FFD700;
    color: #1a1a2e;
}

