/* ====================================
   DotIAM Tools - Main Stylesheet
   ==================================== */

/* CSS Variables */
:root {
    --primary-blue: #4facfe;
    --primary-purple: #c471ed;
    --primary-pink: #f64f59;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 50%, var(--primary-pink) 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #e9ecef;
    
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ====================================
   Navigation
   ==================================== */
.category-section {
    margin-bottom: 70px;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.logo-circles {
    display: flex;
    gap: 6px;
    align-items: center;
}

.circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.circle-1 {
    background: var(--primary-blue);
    animation-delay: 0s;
}

.circle-2 {
    background: var(--primary-purple);
    animation-delay: 0.2s;
}

.circle-3 {
    background: var(--primary-pink);
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-dark);
}

.logo-sub {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-purple);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-link {
    padding: 12px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.mobile-menu-link:hover {
    background: var(--bg-light);
    color: var(--primary-purple);
}

/* ====================================
   Main Content
   ==================================== */
.main-content {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

/* ====================================
   Hero Section
   ==================================== */
.hero-section {
    background: var(--gradient-hero);
    color: var(--bg-white);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating Animation */
.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 60px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   Search Section
   ==================================== */
.search-section {
    padding: 40px 20px;
    background: var(--bg-light);
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 18px 60px 18px 24px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    transition: var(--transition);
}
div#all-tool-categories-container {
    margin-top: 50px;
}
.search-box input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(196, 113, 237, 0.1);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    border: none;
    padding: 12px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-md);
}

/* ====================================
   Tools Section
   ==================================== */
.tools-section {
    padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.filter-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--bg-white);
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

/* Tools Grid - Responsive h and p tags */
.tool-card h3,
.tool-card h4,
.tool-card .tool-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.3;
}

.tool-card p,
.tool-card .tool-desc {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tool-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px 15px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple);
}

.tool-icon {
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 15px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.tool-card:hover .tool-icon {
    animation: none;
    transform: scale(1.1);
}

.tool-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.tool-desc {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.tool-btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tool-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* ====================================
   Features Section
   ==================================== */
.features-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.section-title {
    font-size: 38px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ====================================
   Footer
   ==================================== */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
	grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo {
    margin-bottom: 20px;
}

.footer-brand .logo-main {
    color: #ffffff;
}

.footer-brand .logo-sub {
    color: #999999;
}

.footer-desc {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-purple);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #999999;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* ====================================
   Responsive Design
   ==================================== */

/* Large Desktop - 5 columns */
@media (max-width: 1400px) {
    .tools-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Desktop/Laptop - 4-5 columns */
@media (max-width: 1200px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .categories-grid-new {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Small Laptop - 4 columns */
@media (max-width: 992px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tool-card h3,
    .tool-card h4,
    .tool-card .tool-name {
        font-size: 17px;
    }
    
    .tool-card p,
    .tool-card .tool-desc {
        font-size: 13px;
    }
}

/* Tablet - 3 columns */
@media (max-width: 768px) {
	.hero-section-v2 {
        padding: 80px 0px !important;
    }
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .tools-section {
        padding: 60px 0px;
    }
    
    .tool-card h3,
    .tool-card h4,
    .tool-card .tool-name {
        font-size: 16px;
    }
    
    .tool-card p,
    .tool-card .tool-desc {
        font-size: 13px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .footer-content {
        grid-template-columns: 2fr;
        grid-template-columns: repeat(2, 1fr);
    }
	.tool-btn {
        padding: 5px 10px;
        width: 100%;
        line-height: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
	.tools-grid-v2 {
        grid-template-columns: repeat(1, 1fr) !important;
    }
	.tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .tools-section {
        padding: 50px 0px;
    }
    
    .tool-card {
        padding: 20px;
    }
    
    .tool-card h3,
    .tool-card h4,
    .tool-card .tool-name {
        font-size: 15px;
    }
    
    .tool-card p,
    .tool-card .tool-desc {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
	.tools-filter-section-v2 {
		padding: 50px 0px !important;
	}
    .hero-title {
        font-size: 28px;
    }
    .sitemap-stats {
        gap: 5px !important;
        grid-template-columns: repeat(3, 1fr);
        display: grid !important;
    }
	.stat-box {
        padding: 10px 18px !important;
    }
	.contact-quick-links {
		gap: 5px !important;
		grid-template-columns: repeat(3, 1fr);
		display: grid !important;
	}
	a.quick-link {
		padding: 10px 25px !important;
	}
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    } 
    
    .category-filter {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }
}



/* ====================================
   Legal Pages Styles (Privacy, Terms, Disclaimer)
   Add at the END of style.css
   ==================================== */

.legal-page {
    padding-top: 0;
}

.legal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.legal-header h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease-out;
}

.last-updated {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
    font-style: italic;
}

.legal-intro {
    font-size: 18px;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.legal-content {
    padding: 60px 20px;
    background: white;
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Table of Contents */
.legal-toc {
    position: sticky;
    top: 100px;
    height: fit-content;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.legal-toc h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-toc li {
    margin-bottom: 12px;
}

.legal-toc a {
    color: var(--text-gray);
    font-size: 14px;
    transition: var(--transition);
    display: block;
    text-decoration: none;
}

.legal-toc a:hover {
    color: var(--primary-purple);
    padding-left: 5px;
}

/* Legal Text Content */
.legal-text {
    max-width: 800px;
}

.legal-text h2 {
    font-size: 32px;
    font-weight: 800;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--text-dark);
    padding-top: 20px;
    border-top: 2px solid var(--bg-light);
}

.legal-text h2:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.legal-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.legal-text ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

.legal-text ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.legal-text li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.legal-text a {
    color: var(--primary-purple);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

.legal-text strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border-left: 5px solid #FF9800;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.highlight-box strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #E65100;
}

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
    border-left: 5px solid #f44336;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.warning-box strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #c62828;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border-left: 5px solid #2196F3;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.info-box strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #1565C0;
}

/* Contact Info Box */
.contact-info-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border: 2px solid var(--border-color);
}

.contact-info-box p {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

/* Cookie Table */
.cookie-table {
    margin: 30px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cookie-table th {
    background: var(--gradient-primary);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 700;
    font-size: 15px;
}

.cookie-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-gray);
}

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

.cookie-table tr:hover {
    background: var(--bg-light);
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.right-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.right-item:hover {
    border-color: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.right-item h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--text-dark);
}

.right-item p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .legal-wrapper {
        grid-template-columns: 1fr;
    }
    
    .legal-toc {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 32px;
    }
    
    .legal-intro {
        font-size: 16px;
    }
    
    .legal-text h2 {
        font-size: 24px;
    }
    
    .legal-text h3 {
        font-size: 20px;
    }
    
    .legal-text h4 {
        font-size: 16px;
    }
    
    .legal-text p,
    .legal-text li {
        font-size: 15px;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-toc {
        padding: 20px;
    }
    
    .highlight-box,
    .warning-box,
    .info-box {
        padding: 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .legal-header {
        padding: 40px 20px;
    }
    
    .legal-header h1 {
        font-size: 28px;
    }
    
    .legal-content {
        padding: 40px 15px;
    }
    
    .legal-text ul,
    .legal-text ol {
        padding-left: 20px;
    }
    
    .cookie-table {
        font-size: 13px;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 10px;
    }
}

/* Print Styles */
@media print {
    .legal-header {
        background: none;
        color: black;
    }
    
    .legal-toc {
        display: none;
    }
    
    .legal-wrapper {
        grid-template-columns: 1fr;
    }
    
    .highlight-box,
    .warning-box,
    .info-box {
        border: 2px solid #000;
        background: none;
    }
}

/* Tool Page Styles */
.tool-page {
    padding-top: 0;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    font-size: 14px;
    color: var(--text-gray);
}

.breadcrumb a {
    color: var(--text-gray);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-purple);
}

.breadcrumb .separator {
    margin: 0 10px;
    color: var(--border-color);
}

.breadcrumb .current {
    color: var(--text-dark);
    font-weight: 600;
}

/* Tool Header */
.tool-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.tool-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.tool-icon-large {
    font-size: 72px;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.tool-header h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.tool-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 25px;
    line-height: 1.6;
}

.tool-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 16px;
}

.meta-separator {
    opacity: 0.5;
}






/* ====================================
   NEW HOMEPAGE STYLES - Add at the END of style.css
   ==================================== */

/* Updated Hero Section V2 */
.hero-section-v2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
    font-size: 18px;
}

.hero-title-v2 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffd89b 0%, #bed6e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 35px;
    font-size: 16px;
}

.btn-primary-hero {
    background: white;
    color: #667eea;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-secondary-hero {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 33px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer;
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-stats-inline {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-inline {
    font-size: 15px;
    opacity: 0.95;
}

.stat-inline strong {
    font-weight: 900;
    font-size: 18px;
    margin-right: 5px;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    perspective: 1000px;
}

.visual-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s;
    animation: float 3s ease-in-out infinite;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.card-label {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

.visual-card.card-1 { animation-delay: 0s; }
.visual-card.card-2 { animation-delay: 0.2s; }
.visual-card.card-3 { animation-delay: 0.4s; }
.visual-card.card-4 { animation-delay: 0.6s; }
.visual-card.card-5 { animation-delay: 0.8s; }
.visual-card.card-6 { animation-delay: 1s; }
.visual-card.card-7 { animation-delay: 1.2s; }
.visual-card.card-8 { animation-delay: 1.4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Quick Stats Section */
.quick-stats {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.stat-box-new {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.stat-box-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.stat-icon-new {
    font-size: 48px;
}

.stat-content-new h3 {
    font-size: 32px;
    font-weight: 900;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-content-new p {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    margin: 0;
}

/* Categories Showcase */
.categories-showcase {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.categories-grid-new {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

/* Category Card - Responsive h and p tags */
.category-card-new h3,
.category-card-new h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.category-card-new p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.category-card-new {
    background: white;
    padding: 20px 15px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: block;
}

.category-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.category-card-new:hover::before {
    transform: scaleX(1);
}

.category-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.category-card-icon {
    font-size: 45px;
    margin-bottom: 5px;
}

.category-card-new h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.category-card-new p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.category-count {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* View All Section */
.view-all-section {
    text-align: center;
    margin-top: 50px;
}

/* CTA Section */
.cta-section-new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.cta-content-new h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-content-new p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 40px;
}

.btn-white-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 45px;
    background: white;
    color: #667eea;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-white-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title-v2 {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .btn-primary-hero, .btn-secondary-hero {
        width: auto;
        justify-content: center;
    }
    
    .visual-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
	.stats-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    .stat-box-new {
		padding: 20px;
		display: flex;
		flex-direction: column;
		gap: 5px;
		text-align: center;
	}
	.stat-content-new h3 {
		font-size: 22px;
		line-height: 24px;
	}
    .categories-grid-new {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .category-card-new h3,
    .category-card-new h4 {
        font-size: 20px;
    }
    
    .category-card-new p {
        font-size: 14px;
    }
    
    .cta-content-new h2 {
        font-size: 32px;
    }
    
    .cta-content-new p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title-v2 {
        font-size: 28px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .badge-icon {
        font-size: 16px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary-hero, .btn-secondary-hero {
        width: auto;
        justify-content: center;
    }
    .hero-stats-inline {
        gap: 15px;
    }
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .stat-inline {
        font-size: 13px;
    }
    
    .stat-inline strong {
        font-size: 16px;
    }
    
    .visual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .visual-card {
        padding: 20px 15px;
    }
    
    .card-icon {
        font-size: 36px;
    }
    
    .stat-box-new {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    .stat-content-new h3 {
		font-size: 22px;
		line-height: 24px;
	}
    .stat-icon-new {
        font-size: 40px;
    }
    
    .categories-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-card-new {
        padding: 15px 10px;
    }
    .category-card-icon {
		font-size: 34px;
		margin-bottom: 5px;
	}
    .category-card-new h3,
    .category-card-new h4 {
        font-size: 18px;
    }
    
    .category-card-new p {
        font-size: 13px;
    }
}

/* ====================================
   ABOUT PAGE STYLES - Add at END of style.css
   ==================================== */

.about-page {
    padding-top: 0;
}

.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    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 width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.about-title {
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.about-subtitle {
    font-size: 22px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-section {
    padding: 100px 20px;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header-center p {
    font-size: 18px;
    color: var(--text-gray);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.about-content-left h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content-left p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.mission-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 35px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.highlight-item:hover {
    border-color: var(--primary-purple);
    transform: translateX(5px);
}

.highlight-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    flex-shrink: 0;
}

.highlight-text {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.stats-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.stat-card-1 {
    border-color: #667eea;
}

.stat-card-2 {
    border-color: #10b981;
}

.stat-card-3 {
    border-color: #f59e0b;
}

.stat-card-4 {
    border-color: #ef4444;
}

.stat-card-icon {
    font-size: 52px;
    margin-bottom: 15px;
}

.stat-card-number {
    font-size: 38px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.stat-card-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
}

.about-features {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
}

.features-grid-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-card-about {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.feature-card-about:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border-color: var(--primary-purple);
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-icon-about {
    font-size: 48px;
}

.feature-card-about h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-card-about p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 15px;
}

.about-story {
    background: white;
}

.story-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.story-wrapper h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 50px;
}

.story-timeline {
    position: relative;
    padding-left: 40px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-dot {
    position: absolute;
    left: -46px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: #667eea;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-values {
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border-color: var(--primary-purple);
}

.value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(102, 126, 234, 0.1);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 15px;
}

.about-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content-about h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-content-about p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-primary-about {
    background: white;
    color: #667eea;
}

.btn-primary-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-secondary-about {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary-about:hover {
    background: white;
    color: #667eea;
}

/* ====================================
   CONTACT PAGE STYLES
   ==================================== */

.contact-page {
    padding-top: 0;
}

.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-dot-contact {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.contact-title {
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out;
}

.contact-subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-quick-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    text-decoration: none;
    color: white;
}

.quick-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.quick-link-icon {
    font-size: 36px;
}

.quick-link-text {
    font-weight: 600;
    font-size: 14px;
}

.contact-content {
    padding: 100px 20px;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 60px rgba(0,0,0,0.08);
    border: 2px solid rgba(102, 126, 234, 0.1);
}

.form-header {
    margin-bottom: 35px;
}

.form-header h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.form-header p {
    font-size: 16px;
    color: var(--text-gray);
}

.alert {
    padding: 18px 22px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
    font-size: 15px;
}

.alert-icon {
    font-size: 20px;
    font-weight: 900;
    flex-shrink: 0;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 5px solid #28a745;
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 5px solid #dc3545;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.char-count {
    text-align: right;
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 8px;
    font-weight: 600;
}

.char-count span {
    color: #667eea;
}

.captcha-group {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
}

.captcha-icon {
    font-size: 16px;
}

.captcha-group input {
    max-width: 200px;
    margin-top: 12px;
}

.form-hint {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-gray);
    font-style: italic;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card-contact {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 2px solid var(--border-color);
}

.info-card-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.info-card-gradient p,
.info-card-gradient .why-text {
    color: white;
    opacity: 0.95;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-card-icon {
    font-size: 42px;
}

.info-card-contact h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.info-card-contact p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.services-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
}

.services-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 900;
    font-size: 18px;
}

.info-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.info-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.why-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

.why-icon {
    width: 28px;
    height: 28px;
    background: white;
    color: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    flex-shrink: 0;
}

.why-text {
    font-size: 14px;
    font-weight: 600;
}

.social-connect-contact {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 2px solid var(--border-color);
}

.social-connect-contact h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.social-connect-contact p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.social-links-contact {
    display: flex;
    gap: 12px;
}

.social-btn-contact {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-btn-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.contact-faq {
    padding: 100px 20px;
    background: white;
}

.faq-grid-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item-contact {
    padding: 35px;
    background: var(--bg-light);
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.faq-item-contact:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    border-color: #667eea;
}

.faq-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.faq-item-contact h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item-contact p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 15px;
}

/* Responsive for About & Contact */
@media (max-width: 1024px) {
    .about-content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .about-title,
    .contact-title {
        font-size: 38px;
    }
    
    .about-subtitle,
    .contact-subtitle {
        font-size: 18px;
    }
    
    .about-hero-stats,
    .contact-quick-links {
        gap: 20px;
    }
    
    .hero-stat-number {
        font-size: 36px;
    }
    
    .section-header-center h2,
    .about-content-left h2,
    .form-header h2 {
        font-size: 32px;
    }
    
    .mission-highlights,
    .stats-showcase {
        grid-template-columns: 1fr;
    }
    
    .features-grid-about {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-grid-contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-title,
    .contact-title {
        font-size: 32px;
    }
    
    .about-section,
    .contact-content,
    .contact-faq {
        padding: 60px 20px;
    }
    
    .cta-content-about h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-about {
        width: 100%;
        justify-content: center;
    }
}








/* ====================================
   TOOLS PAGE V2 STYLES - Add at END of style.css
   ==================================== */

/* Tools Archive Hero */
.tools-archive-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tools-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: 30%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.tools-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.tools-badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.tools-archive-title {
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.tools-archive-subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.tools-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tools-hero-stat {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tools-hero-stat:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.tools-stat-icon {
    font-size: 48px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.tools-stat-content {
    text-align: center;
}

.tools-stat-number {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tools-stat-label {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Filter Section V2 */
.tools-filter-section-v2 {
    padding: 50px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
    position: relative;
    margin-top: -50px;
    z-index: 10;
}

.tools-search-wrapper-v2 {
    max-width: 700px;
    margin: 0 auto 35px;
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s;
}

.tools-search-wrapper-v2:focus-within {
    border-color: #667eea;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.search-icon-left {
    padding-left: 25px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
}

.tools-search-input-v2 {
    flex: 1;
    padding: 20px 20px 20px 15px;
    border: none;
    background: transparent;
    font-size: 16px;
    color: var(--text-dark);
}

.tools-search-input-v2:focus {
    outline: none;
}

.tools-search-input-v2::placeholder {
    color: var(--text-light);
}

.tools-search-btn-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    margin-right: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.tools-search-btn-v2:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Category Pills */
.tools-category-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    padding: 9px 13px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: left 0.3s;
    z-index: 0;
}

.category-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.category-pill.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.category-pill.active::before {
    left: 0;
}

.pill-icon,
.pill-text,
.pill-count {
    position: relative;
    z-index: 1;
}

.pill-icon {
    font-size: 18px;
}

.pill-count {
    background: rgba(255, 255, 255, 0.3);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}

.category-pill:not(.active) .pill-count {
    background: var(--bg-light);
    color: var(--text-gray);
}

/* Tools Grid Section V2 */
.tools-grid-section-v2 {
    padding: 80px 20px;
    background: white;
}

.tools-results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.results-count {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 500;
}

.results-count strong {
    color: #667eea;
    font-weight: 700;
    font-size: 18px;
}

.view-toggle {
    display: flex;
    gap: 8px;
    background: var(--bg-light);
    padding: 5px;
    border-radius: 12px;
}

.view-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn:hover {
    background: white;
    color: #667eea;
}

.view-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Tools Grid V2 */
.tools-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    transition: all 0.3s;
}

.tools-grid-v2.list-view {
    grid-template-columns: 1fr;
}

.tool-card-v2 {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tool-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.tool-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

.tool-card-v2:hover::before {
    transform: scaleX(1);
}

.tools-grid-v2.list-view .tool-card-v2 {
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

.tool-card-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.tool-card-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-direction: row;
    flex-wrap: wrap;
}
.tools-grid-v2.list-view .tool-card-header-v2 {
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.tool-icon-v2 {
    font-size: 56px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s;
}

.tool-card-v2:hover .tool-icon-v2 {
    transform: scale(1.15) rotate(5deg);
}

.tool-category-badge-v2 {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #667eea;
    text-transform: capitalize;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.tool-name-v2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
    transition: color 0.3s;
}

.tool-card-v2:hover .tool-name-v2 {
    color: #667eea;
}

.tools-grid-v2.list-view .tool-name-v2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.tool-description-v2 {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 20px;
}

.tools-grid-v2.list-view .tool-description-v2 {
    flex-grow: 1;
    margin-bottom: 0;
}

.tool-card-footer-v2 {
    display: flex;
    justify-content: flex-end;
}

.tools-grid-v2.list-view .tool-card-footer-v2 {
    min-width: 120px;
}

.tool-link-text-v2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #667eea;
    font-size: 15px;
    transition: all 0.3s;
}

.tool-card-v2:hover .tool-link-text-v2 {
    gap: 10px;
}

.tool-link-text-v2 svg {
    transition: transform 0.3s;
}

.tool-card-v2:hover .tool-link-text-v2 svg {
    transform: translateX(4px);
}

/* No Results V2 */
.no-results-v2 {
    text-align: center;
    padding: 100px 20px;
    flex-direction: column;
    align-items: center;
}

.no-results-animation {
    position: relative;
    margin-bottom: 30px;
}

.empty-icon {
    font-size: 80px;
    opacity: 0.3;
    animation: bounce 2s ease-in-out infinite;
}

.empty-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
}

.empty-circles .circle {
    width: 12px;
    height: 12px;
    background: #667eea;
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite;
}

.empty-circles .circle:nth-child(2) {
    animation-delay: 0.2s;
}

.empty-circles .circle:nth-child(3) {
    animation-delay: 0.4s;
}

.no-results-v2 h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.no-results-v2 p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 35px;
    max-width: 500px;
}

.reset-filters-btn-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.reset-filters-btn-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* Features Section V2 */
.tools-features-v2 {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
}

.features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    /* max-width: 1200px; */
    /* margin: 0 auto; */
}

.feature-item-v2 {
    background: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-item-v2:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.feature-item-v2:hover::before {
    opacity: 1;
}

.feature-icon-v2 {
    font-size: 40px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s;
}

.feature-item-v2:hover .feature-icon-v2 {
    transform: scale(1.2) rotate(10deg);
}

.feature-item-v2 h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
    line-height: 26px;
}

.feature-item-v2 p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.tools-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tools-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.cta-icon {
    font-size: 56px;
    animation: bounce 2s ease-in-out infinite;
}

.cta-icon:nth-child(2) {
    animation-delay: 0.2s;
}

.cta-icon:nth-child(3) {
    animation-delay: 0.4s;
}

.tools-cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.tools-cta-content p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons-tools {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-tools {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary-tools {
    background: white;
    color: #667eea;
}

.btn-primary-tools:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary-tools {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary-tools:hover {
    background: white;
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tools-hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .tools-grid-v2 {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		grid-template-columns: repeat(3, 1fr) !important;
    }

}
@media (max-width:767px){
	    
	.tools-category-pills {
        flex-direction: row;
        display: grid;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 5px;
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width:1024px) and (min-width:768px) {
	.tools-category-pills {
        gap: 5px;
        grid-template-columns: repeat(4, 1fr) !important;
    }
}
@media (max-width: 768px) {
    .tools-archive-title {
        font-size: 38px;
    }
    
    .tools-archive-subtitle {
        font-size: 17px;
    }
    
    .tools-hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .tools-hero-stat {
        padding: 20px 15px;
    }
    
    .tools-stat-icon {
        font-size: 40px;
    }
    
    .tools-stat-number {
        font-size: 28px;
    }
    
    .tools-search-wrapper-v2 {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .search-icon-left {
        display: none;
    }
    
    .tools-search-input-v2 {
        padding: 18px 20px;
        text-align: center;
    }
    
    .tools-search-btn-v2 {
        width: calc(100% - 10px);
        justify-content: center;
        margin: 5px;
    }

    
    .category-pill {
        font-size: 12px;
        padding: 5px 10px;
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
    }
    .tools-grid-section-v2 {
		padding: 80px 0px;
	}
    .tools-results-info {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .tool-card-header-v2 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        flex-direction: column;
    }
    .tools-grid-v2 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    
    .tools-grid-v2.list-view .tool-card-v2 {
        flex-direction: column;
    }
    
    .features-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .tools-cta-content h2 {
        font-size: 32px;
    }
    
    .tools-cta-content p {
        font-size: 17px;
    }
    
    .cta-buttons-tools {
        flex-direction: column;
    }
    
    .btn-tools {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .tools-archive-title {
        font-size: 32px;
    }
    
    .tools-archive-subtitle {
        font-size: 16px;
    }
    
    .tools-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tool-card-v2 {
        padding: 15px;
        display: flex;
        align-items: center;
        text-align: center;
    }
    
    .tool-icon-v2 {
        font-size: 38px;
    }
    
    .tool-name-v2 {
        font-size: 18px;
        line-height: 20px;
    }
    
    .tool-description-v2 {
        font-size: 14px;
    }
}







/* ====================================
   UNIVERSAL TOOL DISCLAIMER SECTION
   Add at END of style.css
   ==================================== */

.tool-disclaimer-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #fff9e6 0%, #ffe8cc 100%);
    position: relative;
}

.tool-disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff9800 0%, #ff6b00 100%);
}

.disclaimer-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(0,0,0,0.1);
    border: 3px solid #ff9800;
}

.disclaimer-header {
    background: linear-gradient(135deg, #ff9800 0%, #ff6b00 100%);
    color: white;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.disclaimer-icon {
    font-size: 52px;
    animation: shake 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

.disclaimer-title {
    font-size: 32px;
    font-weight: 900;
    margin: 0;
    letter-spacing: -0.5px;
}

.disclaimer-content {
    padding: 40px;
}

.disclaimer-main-text {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 35px;
    text-align: center;
    padding: 0 20px;
}

.disclaimer-main-text strong {
    color: #ff6b00;
    font-weight: 700;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.disclaimer-card {
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
    padding: 30px 25px;
    border-radius: 15px;
    border: 2px solid #ffe8cc;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.disclaimer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff9800 0%, #ff6b00 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.disclaimer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
    border-color: #ff9800;
}

.disclaimer-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    animation: bounce 2s ease-in-out infinite;
}

.disclaimer-card:nth-child(1) .card-icon { animation-delay: 0s; }
.disclaimer-card:nth-child(2) .card-icon { animation-delay: 0.3s; }
.disclaimer-card:nth-child(3) .card-icon { animation-delay: 0.6s; }

.disclaimer-card h4 {
    font-size: 19px;
    font-weight: 800;
    color: #ff6b00;
    margin-bottom: 12px;
}

.disclaimer-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.disclaimer-footer-note {
    background: linear-gradient(135deg, #ffe8cc 0%, #ffd699 100%);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 5px solid #ff9800;
}

.disclaimer-footer-note p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.disclaimer-footer-note strong {
    color: #ff6b00;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.disclaimer-footer-note a {
    color: #ff6b00;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.disclaimer-footer-note a:hover {
    color: #e65100;
    border-bottom-color: #e65100;
}

/* Responsive Design */
@media (max-width: 768px) {
	
	.categories-showcase {
		padding: 80px 0px;
	}
	.features-section {
		padding: 80px 0px;
	}
	.feature-card {
		padding: 15px;
	}
	.feature-icon {
		font-size: 40px;
		margin-bottom: 5px;
	}
	.feature-card h3 {
		font-size: 18px;
		font-weight: 700;
		margin-bottom: 12px;
	}
	.footer {
		padding: 60px 0px 30px;
	}
	.tools-archive-hero {
		padding: 100px 0px 80px;
	}
    .disclaimer-header {
        flex-direction: column;
        text-align: center;
        padding: 25px 30px;
    }
    
    .disclaimer-icon {
        font-size: 48px;
    }
    
    .disclaimer-title {
        font-size: 26px;
    }
    
    .disclaimer-content {
        padding: 30px 25px;
    }
    
    .disclaimer-main-text {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .disclaimer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .disclaimer-card {
        padding: 25px 20px;
    }
    
    .card-icon {
        font-size: 42px;
    }
    
    .disclaimer-card h4 {
        font-size: 18px;
    }
    
    .disclaimer-footer-note {
        padding: 20px;
    }
    
    .disclaimer-footer-note p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .tool-disclaimer-section {
        padding: 50px 15px;
    }
    
    .disclaimer-wrapper {
        border-radius: 20px;
        border-width: 2px;
    }
    
    .disclaimer-header {
        padding: 20px;
    }
    
    .disclaimer-icon {
        font-size: 40px;
    }
    
    .disclaimer-title {
        font-size: 22px;
    }
    
    .disclaimer-content {
        padding: 25px 20px;
    }
    
    .disclaimer-main-text {
        font-size: 15px;
    }
    
    .card-icon {
        font-size: 36px;
    }
    
    .disclaimer-card h4 {
        font-size: 17px;
    }
    
    .disclaimer-card p {
        font-size: 13px;
    }
    
    .disclaimer-footer-note {
        padding: 18px 15px;
    }
    
    .disclaimer-footer-note p {
        font-size: 13px;
    }
}

/* Print Styles */
@media print {
    .tool-disclaimer-section {
        page-break-before: always;
        background: white;
    }
    
    .disclaimer-wrapper {
        border: 2px solid #333;
        box-shadow: none;
    }
    
    .disclaimer-header {
        background: #f0f0f0;
        color: #333;
    }
}


@media (max-width:280px){
}
@media (max-width:767px){
	.features-grid-v2 {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}	
	.tools-grid-v2 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
	.tools-features-v2 {
		padding: 100px 0px;
	}
	.footer-content {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
		margin-bottom: 40px;
	}	
	.tool-content ,.seo-content ,.tool-disclaimer-section {
		padding: 60px 10px !important;
	}
	.related-tools-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 10px !important;
	}
	.related-tools {
		padding: 20px !important;
	}
	.disclaimer-grid {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 10px !important;
    }
}
@media (max-width:1024px) and (min-width:768px) {
	.features-grid-v2 {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}
	.tools-grid-v2 {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px;
    }	
	.footer-content {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
		margin-bottom: 40px;
	}	
	.related-tools-grid {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 10px !important;
	}
	.disclaimer-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }	
}
@media (max-width:1280px) and (min-width:1024px) {
	.features-grid-v2 {
		grid-template-columns: repeat(4, 1fr);
		gap: 10px;
	}	
	.footer-content {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		gap: 30px;
		margin-bottom: 40px;
	}		
	.related-tools-grid {
		grid-template-columns: repeat(4, 1fr) !important;
		gap: 20px;
	}
	.disclaimer-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }	
}
@media (min-width:1280px) and (max-width:1400px) {
	.features-grid-v2 {
		grid-template-columns: repeat(6, 1fr);
		gap: 10px;
	}
	.footer-content {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		gap: 30px;
		margin-bottom: 40px;
	}	
	.related-tools-grid {
		grid-template-columns: repeat(4, 1fr) !important;
		gap: 20px;
	}
		.disclaimer-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }	
}





.content-article {
    max-width: 1300px !important;
    margin: 0 auto;
    line-height: 1.8;
}

aside.new-related-tools {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 1rem;
    text-align: center;
    max-width: 1300px;
    margin: auto;
    margin-bottom: 50px;
}
.new-related-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 30px 0;
}
aside.new-related-tools h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

@media (max-width:767px){
	aside.new-related-tools .related-tool-card .tool-name {
		font-size: 16px;
	}
	section.related-tools-section .container {
		padding: 0;
	}
	aside.new-related-tools {
		background: #f8f9fa;
		padding: 20px;
		border-radius: 1rem;
		text-align: center;
	}
	.new-related-tools-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
		margin: 30px 0;
	}
	aside.new-related-tools h3 {
		font-size: 28px;
		font-weight: 800;
		margin-bottom: 30px;
		text-align: center;
	}
}
@media (max-width:1024px) and (min-width:768px) {
	aside.new-related-tools {
		background: #f8f9fa;
		padding: 20px;
		border-radius: 1rem;
		text-align: center;
	}
	.new-related-tools-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
		margin: 30px 0;
	}
	aside.new-related-tools h3 {
		font-size: 28px;
		font-weight: 800;
		margin-bottom: 30px;
		text-align: center;
	}	
}
@media (max-width:1280px) and (min-width:1024px) {
	aside.new-related-tools {
		background: #f8f9fa;
		padding: 20px;
		border-radius: 1rem;
		text-align: center;
	}
	.new-related-tools-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 15px;
		margin: 30px 0;
	}
	aside.new-related-tools h3 {
		font-size: 28px;
		font-weight: 800;
		margin-bottom: 30px;
		text-align: center;
	}
}
@media (min-width:1280px) and (max-width:1400px) {
	aside.new-related-tools {
		background: #f8f9fa;
		padding: 20px;
		border-radius: 1rem;
		text-align: center;
	}
	.new-related-tools-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 15px;
		margin: 30px 0;
	}
	aside.new-related-tools h3 {
		font-size: 28px;
		font-weight: 800;
		margin-bottom: 30px;
		text-align: center;
	}	
}












/* ===================================
   FOOTER CATEGORY SECTIONS - FULL WIDTH
   =================================== */

.footer-category-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-category-section:last-child {
    border-bottom: none;
}

.footer-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-category-title a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-category-title a:hover {
    color: #667eea;
    transform: translateX(5px);
}

.footer-tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 40px;
}

.footer-tool-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0px;
    border-radius: 4px;
}

.footer-tool-link:hover {
    color: #667eea;
    transform: translateX(3px);
}


@media (max-width:767px){
.footer-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
}	
}
@media (max-width:1024px) and (min-width:768px) {
.footer-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 40px;
}	
}
@media (max-width:1280px) and (min-width:1024px) {
.footer-tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 40px;
}	
}
@media (min-width:1280px) and (max-width:1400px) {
.footer-tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 40px;
}	
}









/* ===================================
   SOCIAL SHARE SIDEBAR - FIXED RIGHT
   =================================== */

.social-share-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px 0 0 8px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
}

.social-share-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-share-item {
    margin: 0;
}

.social-share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-share-link:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Facebook */
.social-share-link.facebook {
    background: #1877f2;
}

.social-share-link.facebook:hover {
    background: #145dbf;
}

/* Twitter */
.social-share-link.twitter {
    background: #1da1f2;
}

.social-share-link.twitter:hover {
    background: #0c85d0;
}

/* LinkedIn */
.social-share-link.linkedin {
    background: #0077b5;
}

.social-share-link.linkedin:hover {
    background: #005582;
}

/* WhatsApp */
.social-share-link.whatsapp {
    background: #25d366;
}

.social-share-link.whatsapp:hover {
    background: #1da851;
}

/* Instagram */
.social-share-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-share-link.instagram:hover {
    background: linear-gradient(45deg, #d17e2d 0%, #c9562f 25%, #b91f35 50%, #a91d54 75%, #9a1370 100%);
}

/* Responsive - Hide on mobile */
@media (max-width: 768px) {
    .social-share-sidebar {
        right: -60px;
        transition: right 0.3s ease;
    }
    
    .social-share-sidebar:hover {
        right: 0;
    }
    
    .social-share-link {
        width: 25px;
        height: 25px;
    }
	.social-share-link svg {
		width: 15px;
	}
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .social-share-link {
        width: 32px;
        height: 32px;
    }
}

/* Animation on page load */
@keyframes slideInRight {
    from {
        right: -100px;
        opacity: 0;
    }
    to {
        right: 0;
        opacity: 1;
    }
}

.social-share-sidebar {
    animation: slideInRight 0.5s ease-out 0.5s both;
}