/* MamunTools Stylesheet - Senior Frontend Design with Sidebar Layout */

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --sidebar-width: 280px;
    --sidebar-width-collapsed: 80px;
    --navbar-height: 0px;
    /* Dynamic Hero Padding Variables */
    --hero-padding-top: clamp(1.5rem, 3vh, 2.5rem);
    --hero-padding-bottom: clamp(1.5rem, 3vh, 2.5rem);
    --json-primary-bg: #1e1e1e;
    --json-editor-bg: #252526;
    --json-line-number-color: #858585;
    --json-line-number-bg: #1e1e1e;
    --json-text-color: #d4d4d4;
    --json-success-green: #4ec9b0;
    --json-error-red: #f48771;
    --json-number-blue: #b5cea8;
    --json-string-orange: #ce9178;
    --json-key-blue: #569cd6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: auto;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* ===== LAYOUT CONTAINER ===== */
.layout-container {
    display: flex;
    flex: 1;
    width: 100%;
    margin-top: 0;
    overflow-x: hidden;
}

/* ===== SIDEBAR STYLES ===== */
.sidebar-left {
    width: var(--sidebar-width);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1.5rem 0;
    z-index: 900;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Fix scrollbar - remove double scrollbar */
.sidebar-left {
    scrollbar-width: thin;
    scrollbar-color: #667eea #f1f1f1;
}

.sidebar-left::-webkit-scrollbar {
    width: 6px;
}

.sidebar-left::-webkit-scrollbar-track {
    background: transparent;
    margin: 0;
}

.sidebar-left::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 3px;
}

.sidebar-left::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
}

/* Sidebar Brand */
.sidebar-brand {
    padding: 1rem 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-logo {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px;
    object-fit: contain;
}

.brand-name {
    font-weight: 800;
    font-size: 1.3rem;
    color: white;
    letter-spacing: -0.5px;
}

.brand-link:hover {
    transform: scale(1.05);
}

.brand-link:hover .brand-logo {
    background: rgba(255, 255, 255, 0.3);
}

.sidebar-header {
    padding: 0 1.5rem 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    margin: 0;
}

.sidebar-search {
    padding: 0 1rem 1rem;
    margin-bottom: 1rem;
}

.sidebar-search-input {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.sidebar-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.sidebar-search-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
}

.sidebar-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.sidebar-category-title:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.toggle-icon {
    display: none;
}

.sidebar-category-title.collapsed .toggle-icon {
    transform: rotate(-90deg);
}

.sidebar-items {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow: visible;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    border-radius: 0 8px 8px 0;
    font-weight: 500;
}

.sidebar-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-left-color: rgba(255, 255, 255, 0.6);
}

.sidebar-item.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-left-color: white;
    font-weight: 600;
}

.sidebar-item i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.tool-emoji {
    display: inline-block;
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.sidebar-item-viewall {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
}

/* Sidebar Social Section */
.sidebar-social {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: auto;
}

.sidebar-social-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 1rem 0.75rem;
}

.sidebar-social-links {
    display: flex;
    gap: 0.75rem;
    padding: 0 1rem;
    justify-content: center;
}

.sidebar-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.sidebar-social-link:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sidebar-close-btn {
    display: none;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 890;
    transition: background 0.3s ease;
    pointer-events: none;
}

.sidebar-overlay.active {
    background: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

/* Sidebar Category Headers and Tools */
.sidebar-category-header {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.sidebar-category-header:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.category-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 0.95rem;
    flex: 1;
}

.category-toggle i {
    transition: transform 0.3s ease;
    display: inline-block;
    width: 16px;
    text-align: center;
    font-size: 0.8rem;
}

.sidebar-category-header.collapsed .category-toggle i {
    transform: rotate(-90deg);
}

.category-name {
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.sidebar-category-items {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    max-height: 1000px;
    opacity: 1;
    transition: all 0.3s ease;
    overflow: hidden;
}

.sidebar-category-items.collapsed {
    max-height: 0;
    opacity: 0;
    display: none;
}

.sidebar-tool-item {
    padding-left: 2rem !important;
    font-size: 0.95rem !important;
    color: #e0e7ff !important;
    position: relative;
    transition: all 0.2s ease !important;
}

.sidebar-tool-item .tool-name {
    color: inherit !important;
    font-weight: 500;
    font-size: 0.95rem;
}

.sidebar-tool-item:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-left-color: rgba(255, 255, 255, 0.6) !important;
}

.sidebar-tool-item:hover .tool-name {
    color: white !important;
}

.sidebar-tool-item.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.25) !important;
    border-left: 3px solid white !important;
    border-left-color: white !important;
    font-weight: 600 !important;
    box-shadow: inset -2px 0 0 rgba(255, 255, 255, 0.3) !important;
}

.sidebar-tool-item.active .tool-name {
    color: white !important;
    font-weight: 700 !important;
}

/* ===== PAGE WRAPPER ===== */
.page-wrapper {
    flex: 1;
    width: calc(100% - var(--sidebar-width));
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

/* ===== RESPONSIVE SIDEBAR ===== */
@media (max-width: 991px) {
    :root {
        --sidebar-width: 100%;
    }
    
    .layout-container {
        position: relative;
    }
    
    .sidebar-left {
        width: 100%;
        height: 100vh;
        transform: translateX(-100%);
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        z-index: 950;
        top: 0;
    }
    
    .sidebar-left.active {
        transform: translateX(0);
    }
    
    .sidebar-close-btn {
        display: block;
    }
    
    .sidebar-overlay {
        display: block;
    }
    
    .page-wrapper {
        width: 100%;
        margin-left: 0;
    }

    footer {
        margin-left: 0;
    }
    
    /* Hamburger Menu Button Styles */
    .sidebar-toggle-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: white;
        border: none;
        color: #667eea;
        font-size: 1.3rem;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        z-index: 940;
        padding: 0;
        margin: 0;
    }
    
    .sidebar-toggle-btn:hover {
        background: #f0f4ff;
        transform: scale(1.05);
    }
    
    .sidebar-toggle-btn:active {
        transform: scale(0.95);
    }
    
    .sidebar-toggle-btn i {
        font-size: 1.3rem;
        transition: transform 0.3s ease;
    }
}

@media (max-width: 576px) {
    .brand-name {
        font-size: 1.1rem;
    }
    
    .brand-logo {
        height: 36px;
        width: 36px;
    }
}

/* ...rest of existing styles... */
main {
    flex: 1;
    width: 100%;
    overflow-x: hidden;
}

.main-content-box {
    flex: 1;
    width: 100%;
    padding: 0;
    overflow-x: hidden;
    overflow-y: visible;
    display: block;
    min-height: auto;
}

.main-content {
    width: 100%;
    padding: 0;
    overflow-x: hidden;
    overflow-y: visible;
    display: block;
    min-height: auto;
}

/* CONTAINER - Bootstrap Standard */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
        padding-right: 20px;
        padding-left: 20px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container {
        max-width: 960px;
        padding-right: 25px;
        padding-left: 25px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
        padding-right: 30px;
        padding-left: 30px;
    }
}

/* XXL devices (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* HIDE ADS COMPLETELY */
.sidebar-left-old,
.sidebar-right,
.ad-slot,
.ad-slot-300x250,
.ad-slot-300x600 {
    display: none !important;
}

/* ===== FOOTER ===== */
footer {
    width: 100%;
    margin: 0;
    padding: 0;
    margin-top: auto;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    flex-shrink: 0;
}

.footer-wrapper {
    padding: 2rem 1rem;
    padding-left: calc(var(--sidebar-width) + 1rem);
    max-width: 100%;
    margin: 0;
}

/* 4 Column Grid - Equal width */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-column {
    min-width: 0;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: clamp(40px, 8vw, 60px);
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.1);
}

.footer-title {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.footer-title-small {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title-small::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 1px;
}

.footer-description {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(35px, 8vw, 44px);
    height: clamp(35px, 8vw, 44px);
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid transparent;
    border-radius: 50%;
    color: #667eea;
    text-decoration: none;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #667eea;
    transform: translateX(4px);
}

.footer-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-item {
    text-align: left;
    padding: clamp(8px, 1.5vw, 12px);
    background: rgba(102, 126, 234, 0.05);
    border-left: 3px solid #667eea;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateX(4px);
}

.stat-value {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
    margin: clamp(15px, 3vw, 25px) 0;
}

.footer-bottom {
    padding: clamp(15px, 3vw, 20px) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copyright {
    color: #b0b0b0;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    margin: 0;
}

.footer-copyright strong {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.footer-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: clamp(1rem, 3vw, 30px);
    flex-wrap: wrap;
}

.footer-legal-links li {
    margin: 0;
}

.footer-legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.footer-legal-links a:hover {
    color: #667eea;
}

.footer-legal-links a:hover::after {
    width: 100%;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 991px) {
    .footer-wrapper {
        padding-left: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-wrapper {
        padding: 1.5rem 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-title-small {
        text-align: center;
    }

    .footer-title-small::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links,
    .footer-stats {
        text-align: center;
    }

    .footer-links a {
        display: block;
        margin-bottom: 0.5rem;
    }

    .stat-item {
        text-align: center;
        border-left: none;
        border-top: 3px solid #667eea;
    }

    .social-links {
        justify-content: center;
        margin-top: 0.75rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
        margin-top: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer-wrapper {
        padding: 1.5rem 0.75rem;
    }

    .footer-grid {
        gap: 1rem;
    }

    .footer-bottom {
        gap: 1rem;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
    }

    .footer-legal-links li {
        width: 100%;
    }

    .footer-legal-links a {
        font-size: 0.75rem;
        display: block;
    }
}

/* ===== HERO SECTION ===== */
.hero-intro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
    position: relative;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    z-index: 1;
    margin: 0;
}

.hero-intro .container {
    width: 100%;
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.hero-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .hero-intro-content {
        grid-template-columns: 1fr;
    }
}

.hero-intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.hero-intro-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    word-wrap: break-word;
}

.hero-intro-subtitle {
    font-size: clamp(0.9rem, 2vw, 1rem);
    opacity: 0.95;
    margin-bottom: 1rem;
    font-weight: 500;
    word-wrap: break-word;
}

.hero-intro-description {
    font-size: clamp(0.85rem, 1.8vw, 0.9rem);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.hero-intro-stats {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.12);
    padding: clamp(1rem, 2.5vw, 1.5rem);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    box-sizing: border-box;
}

.stat {
    text-align: center;
    padding: clamp(0.5rem, 1vw, 0.75rem) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 80px;
}

.stat:hover {
    transform: scale(1.08);
}

.stat-number {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    font-weight: 900;
    margin-bottom: 0.3rem;
    letter-spacing: -0.5px;
    line-height: 1;
}

.stat-label {
    font-size: clamp(0.7rem, 1.3vw, 0.8rem);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 500;
}

.hero-intro-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-primary-large,
.btn-secondary-large {
    padding: clamp(10px, 1.5vw, 12px) clamp(18px, 3vw, 24px);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
}

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

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: #667eea;
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary-large:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

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

/* ===== SECTION HEADERS ===== */
.section-header {
    margin-bottom: clamp(2rem, 5vw, 2.5rem);
    text-align: center;
    padding: clamp(1rem, 3vw, 2rem) 1rem;
    width: 100%;
    box-sizing: border-box;
    animation: fadeInDown 0.6s ease-out;
}

.section-header h2 {
    font-size: clamp(2.2rem, 6vw, 3rem);
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    word-wrap: break-word;
    letter-spacing: -1px;
    line-height: 1.1;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.section-subtitle {
    color: #6c757d;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    margin-top: 2rem;
    font-weight: 500;
    opacity: 0.85;
}

/* ===== FEATURED TOOLS SECTION ===== */
.featured-tools-section {
    padding: clamp(1.5rem, 3vw, 2.5rem) 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 0;
}

.featured-tools-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
}

.featured-tools-section .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.tools-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 2rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 576px) {
    .tools-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tool-showcase-card {
    background: white;
    border-radius: 12px;
    padding: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tool-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.tool-icon-large {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.tool-name {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    color: var(--dark-color);
}

.tool-description {
    color: #6c757d;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    margin-bottom: 1rem;
    flex: 1;
    line-height: 1.5;
}

.btn-use-tool {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: clamp(8px, 1.5vw, 12px) clamp(16px, 3vw, 24px);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-use-tool:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

/* ===== LATEST BLOGS SECTION ===== */
.latest-blogs-section {
    padding: clamp(1.5rem, 3vw, 2.5rem) 1rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.blog-card {
    background: white;
    border-radius: 12px;
    padding: clamp(1.5rem, 3vw, 2rem);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.blog-title {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-excerpt {
    color: #6c757d;
    font-size: clamp(0.9rem, 1.8vw, 0.95rem);
    margin-bottom: 1rem;
    flex: 1;
    line-height: 1.6;
    text-align: justify;
}

.project-description {
    color: #6c757d;
    font-size: clamp(0.9rem, 1.8vw, 0.95rem);
    margin-bottom: 1rem;
    flex: 1;
    line-height: 1.6;
    text-align: justify;
}

/* ===== FEATURED PROJECTS SECTION ===== */
.featured-projects-section {
    padding: clamp(1.5rem, 3vw, 2.5rem) 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* ===== COMMUNITY ENGAGEMENT SECTION ===== */
.community-engagement-section {
    padding: clamp(1.5rem, 3vw, 2.5rem) 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 0;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.engagement-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.engagement-card:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.engagement-card h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.engagement-card p {
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    opacity: 0.9;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    flex: 1;
}

.btn-engagement {
    background: white;
    color: #667eea;
    padding: clamp(10px, 1.5vw, 12px) clamp(20px, 3vw, 28px);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.8vw, 0.95rem);
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid white;
}

.btn-engagement:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-end { text-align: right; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* ===== FLOATING CONTACT BUTTON ===== */
.floating-contact-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    z-index: 880;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-contact-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.6);
}

.floating-contact-btn:active {
    transform: scale(0.95);
}

.floating-contact-menu {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.floating-contact-menu.active {
    max-height: 500px;
    opacity: 1;
}

.floating-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    border-bottom: 1px solid #f0f4ff;
}

.floating-contact-item:last-child {
    border-bottom: none;
}

.floating-contact-item:hover {
    background: #f0f4ff;
    color: #667eea;
    padding-left: 2rem;
}

.floating-contact-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    color: #667eea;
}

.floating-contact-item:hover i {
    color: #764ba2;
}

@media (max-width: 576px) {
    .floating-contact-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .floating-contact-item {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== TOOLS PAGE STYLING ===== */

.tools-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.tools-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.tools-hero .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
    padding-left: clamp(1rem, 3vw, 2rem);
}

.hero-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    word-wrap: break-word;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1rem);
    opacity: 0.95;
    margin-bottom: 1rem;
    font-weight: 500;
    word-wrap: break-word;
}

.hero-description {
    font-size: clamp(0.85rem, 1.8vw, 0.9rem);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
}

.hero-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.12);
    padding: clamp(1.5rem, 2.5vw, 2rem);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    box-sizing: border-box;
    min-height: 280px;
}

.hero-stats .stat {
    text-align: center;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex: 1;
    width: 100%;
}

.hero-stats .stat:hover {
    transform: scale(1.08);
}

.hero-stats .stat-number {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    line-height: 1;
}

.hero-stats .stat-label {
    font-size: clamp(0.65rem, 1.2vw, 0.8rem);
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

/* Search Section */
.search-section {
    padding: clamp(2rem, 4vw, 3rem) 1rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    width: 100%;
    box-sizing: border-box;
}

.search-section .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
    border-radius: 12px;
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-wrapper:focus-within {
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.25);
    transform: translateY(-2px);
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    color: #667eea;
    font-size: 1.2rem;
}

.search-input {
    border: none;
    padding: 1rem 1rem 1rem 3.5rem;
    font-size: 1rem;
    outline: none;
    width: 100%;
}

.search-input::placeholder {
    color: #999;
}

/* Tools Section */
.tools-section {
    padding: 0 1rem clamp(2rem, 4vw, 3rem) 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    width: 100%;
    box-sizing: border-box;
}

.tools-section .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
}

/* Laptop/Desktop: 4 columns */
@media (max-width: 1400px) {
    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
    }
}

/* Large screens/Wide Tablet: 3 columns */
@media (max-width: 1200px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* Tablet: 2 columns */
@media (max-width: 992px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Small Tablet/Large Mobile: 2 columns */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.9rem;
    }
}

/* Mobile: 1 column */
@media (max-width: 576px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

.tool-card-wrapper {
    display: contents;
}

.tool-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: #343a40;
    width: 100%;
    cursor: pointer;
    gap: 0.75rem;
    font-family: inherit;
    position: relative;
    min-height: 60px;
}

.tool-card::before {
    content: '';
    display: none;
}

.tool-card::after {
    content: '';
    display: none;
}

.tool-card-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
    border-bottom: none;
    flex: 1;
}

.tool-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1.5rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    color: white;
}

.tool-emoji {
    display: inline-block;
    width: 40px;
    text-align: center;
    font-size: 1.5rem;
    color: white;
}

.tool-card-title {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    font-weight: 700;
    color: #343a40;
    margin: 0;
    padding: 0;
    flex: 1;
    letter-spacing: 0.3px;
    word-break: break-word;
}

.tool-card-middle {
    display: flex;
    align-items: center;
    padding: 0;
    gap: 0.5rem;
    justify-content: flex-end;
}

.tool-card-badges {
    display: flex;
    gap: 0.3rem;
    flex-wrap: nowrap;
    align-items: center;
}

.tool-card-users {
    display: none;
}

.tool-card-users-icon {
    display: none;
}

.badge {
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid;
}

.badge-free {
    background: #f0f7ff;
    color: #0066cc;
    border-color: #0066cc;
}

.badge-popular {
    background: #fff4e6;
    color: #f0a500;
    border-color: #f0a500;
}

.tool-card-bottom {
    position: relative;
    height: 0;
    display: none;
}

.tool-card-bottom::before {
    display: none;
}

.tool-card-bottom::after {
    display: none;
}

.tool-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.12);
    border-color: #667eea;
}

.tool-card:hover .badge {
    transform: scale(1.05);
}

.tool-card:hover .tool-card-icon {
    transform: scale(1.08);
}

.tool-card-description {
    display: none;
}

.tool-card-footer {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tools-grid {
        gap: 0.8rem;
    }

    .tool-card {
        min-height: 55px;
        padding: 0.6rem 0.8rem;
        gap: 0.6rem;
    }

    .tool-card-top {
        gap: 0.6rem;
    }

    .tool-card-middle {
        gap: 0.3rem;
    }

    .tool-card-icon {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }

    .tool-card-title {
        font-size: 0.95rem;
    }

    .badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .tool-card {
        min-height: 50px;
        padding: 0.5rem 0.7rem;
        gap: 0.5rem;
    }

    .tool-card-top {
        gap: 0.5rem;
    }

    .tool-card-middle {
        gap: 0.25rem;
    }

    .tool-card-icon {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }

    .tool-card-title {
        font-size: 0.9rem;
    }

    .badge {
        padding: 0.2rem 0.4rem;
        font-size: 0.6rem;
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: clamp(2rem, 5vw, 4rem) 1rem;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #343a40;
    margin-bottom: 0.5rem;
}

.empty-state p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: #6c757d;
}

/* AD Section */
.ad-section {
    padding: 1.5rem 1rem;
    text-align: center;
    background: white;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    width: 100%;
    box-sizing: border-box;
}

.ad-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ad-label {
    margin-bottom: 1rem;
    text-align: center;
}

.ad-badge {
    display: inline-block;
    background: #f0f4ff;
    color: #667eea;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


@media (max-width: 576px) {
    .coming-soon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.coming-soon-card {
    background: white;
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px dashed #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coming-soon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.coming-soon-card h3 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    color: #343a40;
    margin-bottom: 0.75rem;
}

.coming-soon-card p {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.badge-coming {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .tools-hero {
        padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
    }

    .hero-title {
        margin-bottom: 0.5rem;
    }

    .search-section {
        padding: clamp(1.5rem, 3vw, 2rem) 1rem;
    }

    .tools-section {
        padding: clamp(1.5rem, 3vw, 2rem) 1rem;
    }

    .coming-soon-section {
        padding: clamp(1.5rem, 3vw, 2rem) 1rem;
    }
}

/* ===== MINIMAL HERO TITLE ===== */
.hero-title-minimal {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 200;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    word-wrap: break-word;
    letter-spacing: -0.5px;
}

.hero-accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
    border-radius: 2px;
    margin-top: 1rem;
    display: block;
}

@media (max-width: 768px) {
    .hero-title-minimal {
        font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    }

    .hero-accent-line {
        margin-top: 0.75rem;
        width: 50px;
        height: 2px;
    }
}

@media (max-width: 576px) {
    .hero-title-minimal {
        font-size: clamp(1.5rem, 3vw, 1.8rem);
    }

    .hero-accent-line {
        width: 45px;
        height: 2px;
        margin-top: 0.5rem;
    }
}

/* ===== ALERT STYLES (Global Utilities) ===== */
.alert {
    padding: 1.5rem;
    border-radius: 8px;
    margin: 0;
    width: 100%;
}

.alert-success {
    background: rgba(78, 201, 176, 0.15);
    border-left: 4px solid var(--json-success-green);
    color: #068806;
}

.alert-success i {
    margin-right: 0.75rem;
    font-weight: bold;
}

.alert-success strong {
    color: #068806;
}

.alert-danger { 
    background: rgba(244, 135, 113, 0.15);
    border-left: 4px solid var(--json-error-red);
    color: #FF6B6B;
}

.alert-danger i {
    margin-right: 0.75rem;
    font-weight: bold;
}

.alert-danger strong {
    color: #FF6B6B;
}

.alert-info {
    background: rgba(58, 134, 255, 0.15);
    border-left: 4px solid #3a86ff;
    color: #64b5f6;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.15);
    border-left: 4px solid #ffc107;
    color: #ffb74d;
}
