/* ============================================================
   ASTRA QR GENERATOR - MODERN UI
   ============================================================ */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f0f4f9;
    color: #1a1a2e;
    line-height: 1.6;
    padding-top: 64px;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f3f4;
}
::-webkit-scrollbar-thumb {
    background: #dadce0;
    border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
    background: #bdc1c6;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 32px;
    max-width: 1440px;
    margin: 0 auto;
}

/* Logo */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: #1a1a2e;
}

.logo img {
    height: 32px;
    width: auto;
    border-radius: 10px;
}

.logo span {
    letter-spacing: -0.3px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-link {
    color: #5f6368;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 12px;
    transition: all 0.2s;
}

.nav-link:hover {
    background: #f1f3f4;
    color: #1a1a2e;
}

.nav-link.active {
    color: #1a73e8;
    background: #e8f0fe;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #1a73e8;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-btn:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.35);
}

.nav-btn i {
    font-size: 13px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    text-align: center;
    padding: 48px 24px 32px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f4f9 100%);
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f0fe;
    color: #1a73e8;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 4px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.tag i {
    font-size: 11px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero h1 br {
    display: none;
}

.gradient {
    background: linear-gradient(135deg, #1a73e8, #7c3aed, #1a73e8);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 4s ease infinite;
}

@keyframes gradientMove {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero p {
    font-size: 16px;
    color: #5f6368;
    max-width: 560px;
    margin: 0 auto 20px;
    font-weight: 400;
    line-height: 1.7;
}

.hero p br {
    display: none;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #5f6368;
    font-size: 13px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.7);
    padding: 4px 16px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.hero-stats span i {
    color: #1a73e8;
    font-size: 14px;
}

/* ============================================================
   GENERATOR SECTION
   ============================================================ */
.generator-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px 40px;
}

.generator-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #e8eaed;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.generator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* ============================================================
   PREVIEW CARD
   ============================================================ */
.preview-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 24px;
    border: 2px dashed #dadce0;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.preview-card:hover {
    border-color: #1a73e8;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.preview-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
}

.preview-header h3 i {
    color: #1a73e8;
    margin-right: 8px;
}

.preview-badge {
    font-size: 10px;
    font-weight: 600;
    color: #1e7e34;
    background: #e6f4ea;
    padding: 2px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.preview-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
}

#qrcode {
    display: flex;
    align-items: center;
    justify-content: center;
}

#qrcode img,
#qrcode canvas {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.preview-hint {
    color: #9aa0a6;
    font-size: 13px;
    margin-top: 12px;
}

.preview-footer {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.btn-download {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid #1a73e8;
    border-radius: 12px;
    background: transparent;
    color: #1a73e8;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-download:hover {
    background: #1a73e8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.btn-download i {
    font-size: 14px;
}

/* ============================================================
   FORM CARD
   ============================================================ */
.form-card {
    padding: 4px 0;
}

.form-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.form-card h3 i {
    color: #1a73e8;
    margin-right: 8px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 13px;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.form-group label i {
    color: #1a73e8;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #dadce0;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #1a73e8;
    outline: none;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.08);
}

.form-group input[type="color"] {
    height: 48px;
    padding: 4px;
    cursor: pointer;
}

.form-group small {
    display: block;
    color: #9aa0a6;
    font-size: 12px;
    margin-top: 4px;
}

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

.form-group.half {
    margin-bottom: 0;
}

.btn-generate {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #1a73e8, #7c3aed);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 6px;
}

.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.35);
}

.btn-generate i {
    font-size: 18px;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px 48px;
}

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

.section-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
}

.section-header h2 i {
    color: #fbbc04;
    margin-right: 8px;
}

.section-header p {
    color: #5f6368;
    font-size: 15px;
    margin-top: 4px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid #e8eaed;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: #1a73e8;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #e8f0fe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.feature-icon i {
    font-size: 24px;
    color: #1a73e8;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.feature-card p {
    font-size: 13px;
    color: #5f6368;
}

/* ============================================================
   PAGE CONTENT (About, Contact, Legal)
   ============================================================ */
.page-content {
    padding: 40px 24px 60px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.page-content h1 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
    text-align: center;
}

.page-subtitle {
    text-align: center;
    color: #5f6368;
    font-size: 16px;
    margin-bottom: 32px;
}

/* About Page */
.about-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e8eaed;
}

.about-text h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 24px;
    margin-bottom: 8px;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    color: #5f6368;
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.about-text ul li {
    color: #5f6368;
    padding: 4px 0;
    font-size: 14px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid #e8eaed;
}

.google-form-container {
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
}

.google-form-container iframe {
    display: block;
    min-height: 700px;
    width: 100%;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: #5f6368;
    margin-top: 12px;
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 12px;
}

.form-note i {
    color: #1a73e8;
    margin-right: 6px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 20px;
    border: 1px solid #e8eaed;
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateX(6px);
    border-color: #1a73e8;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.08);
}

.contact-item i {
    font-size: 18px;
    color: #1a73e8;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 11px;
    font-weight: 600;
    color: #9aa0a6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a {
    color: #1a1a2e;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: #1a73e8;
}

/* Legal Pages */
.legal-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e8eaed;
}

.legal-section {
    margin-bottom: 28px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.legal-section p {
    color: #5f6368;
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
}

.legal-section ul li {
    color: #5f6368;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}

.legal-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: bold;
}

.legal-section a {
    color: #1a73e8;
    text-decoration: none;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #1a1a2e;
    color: #e8eaed;
    padding: 40px 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-brand h2 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 4px;
}

.footer-logo {
    height: 32px;
    width: auto;
    border-radius: 10px;
}

.footer-text {
    font-size: 14px;
    color: #9aa0a6;
    margin-top: 4px;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
}

.footer-links-group h4 {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-links-group a {
    color: #9aa0a6;
    text-decoration: none;
    font-size: 13px;
    padding: 3px 0;
    transition: color 0.2s;
}

.footer-links-group a:hover {
    color: #ffffff;
}

.footer-social h4 {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

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

.footer-social .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #9aa0a6;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social .social-links a:hover {
    background: #1a73e8;
    color: #ffffff;
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.copyright {
    font-size: 12px;
    color: #5f6368;
}

.developer {
    font-size: 12px;
    color: #9aa0a6;
    margin-top: 2px;
}

.gradient-text {
    background: linear-gradient(135deg, #1a73e8, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 992px) {
    .generator-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 br {
        display: block;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 56px;
    }

    .navbar {
        padding: 8px 16px;
    }

    .logo {
        font-size: 15px;
    }
    .logo img {
        height: 26px;
    }

    .nav-link {
        font-size: 12px;
        padding: 4px 10px;
    }
    .nav-btn {
        font-size: 12px;
        padding: 6px 14px;
    }
    .nav-btn i {
        display: none;
    }

    .hero {
        padding: 32px 16px 24px;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero p {
        font-size: 14px;
    }
    .hero p br {
        display: none;
    }
    .hero-stats span {
        font-size: 12px;
    }

    .generator-container {
        padding: 16px;
    }
    .preview-body {
        min-height: 200px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand {
        align-items: center;
    }
    .footer-social .social-links {
        justify-content: center;
    }

    .page-content {
        padding: 20px 16px 40px;
    }
    .page-content h1 {
        font-size: 28px;
    }
    .about-content,
    .legal-content {
        padding: 24px 20px;
    }
    .contact-form-wrapper {
        padding: 16px;
    }
    .google-form-container iframe {
        min-height: 600px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
    .hero-stats {
        gap: 12px;
    }
    .hero-stats span {
        font-size: 11px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .preview-footer {
        flex-direction: column;
    }

    .google-form-container iframe {
        min-height: 500px;
    }
}
/* Add to existing style.css */

/* ============================================================
   CATEGORY BUTTONS
   ============================================================ */
.categories-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 16px;
    overflow-x: auto;
}

.categories-wrapper {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    padding: 4px 0 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.categories-wrapper::-webkit-scrollbar {
    display: none;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 30px;
    border: 2px solid #dadce0;
    background: #ffffff;
    color: #5f6368;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.category-btn i {
    font-size: 14px;
}

.category-btn:hover {
    background: #f1f3f4;
    border-color: #9aa0a6;
    transform: translateY(-2px);
}

.category-btn.active {
    background: #1a73e8;
    color: #ffffff;
    border-color: #1a73e8;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.category-btn.active i {
    color: #ffffff;
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1a1a2e;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 9999;
    max-width: 400px;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-notification i {
    font-size: 20px;
}

.toast-notification .toast-close {
    background: none;
    border: none;
    color: #9aa0a6;
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
    transition: color 0.2s;
}

.toast-notification .toast-close:hover {
    color: #ffffff;
}

.toast-success i { color: #34a853; }
.toast-error i { color: #ea4335; }
.toast-warning i { color: #fbbc04; }
.toast-info i { color: #1a73e8; }

@media (max-width: 768px) {
    .categories-section {
        padding: 0 16px 12px;
    }
    .category-btn {
        font-size: 12px;
        padding: 6px 14px;
    }
    .category-btn i {
        font-size: 12px;
    }
    .toast-notification {
        bottom: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
        padding: 12px 18px;
        font-size: 14px;
    }
}
/* Add these styles to existing style.css */

/* ============================================================
   SMART FIELDS STYLES
   ============================================================ */

.type-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e8eaed;
    margin-bottom: 16px;
}

.type-label .type-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #e8f0fe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1a73e8;
    flex-shrink: 0;
}

.type-label strong {
    display: block;
    font-size: 14px;
    color: #1a1a2e;
}

.type-label small {
    font-size: 12px;
    color: #5f6368;
    font-weight: 400;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper.has-prefix input {
    padding-left: 48px;
}

.input-prefix {
    position: absolute;
    left: 14px;
    color: #5f6368;
    font-weight: 500;
    font-size: 14px;
    pointer-events: none;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #dadce0;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    background: #ffffff;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    border-color: #1a73e8;
    outline: none;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.08);
}

.input-wrapper input[type="password"] {
    padding-right: 44px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #9aa0a6;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 16px;
    transition: color 0.2s;
}

.toggle-password:hover {
    color: #1a73e8;
}

.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #dadce0;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    background: #ffffff;
    resize: vertical;
    min-height: 60px;
}

.form-group textarea:focus {
    border-color: #1a73e8;
    outline: none;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.08);
}

/* Input with error */
.input-wrapper input.error,
.form-group textarea.error {
    border-color: #ea4335;
}

.input-wrapper input.error:focus,
.form-group textarea.error:focus {
    box-shadow: 0 0 0 4px rgba(234, 67, 53, 0.1);
}

/* ============================================================
   CATEGORY BUTTONS - Updated
   ============================================================ */
.categories-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 16px;
    overflow-x: auto;
}

.categories-wrapper {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    padding: 4px 0 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.categories-wrapper::-webkit-scrollbar {
    display: none;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 30px;
    border: 2px solid #dadce0;
    background: #ffffff;
    color: #5f6368;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.category-btn i {
    font-size: 14px;
}

.category-btn:hover {
    background: #f1f3f4;
    border-color: #9aa0a6;
    transform: translateY(-2px);
}

.category-btn.active {
    background: #1a73e8;
    color: #ffffff;
    border-color: #1a73e8;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.category-btn.active i {
    color: #ffffff;
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1a1a2e;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 9999;
    max-width: 400px;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-notification i {
    font-size: 20px;
}

.toast-notification .toast-close {
    background: none;
    border: none;
    color: #9aa0a6;
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
    transition: color 0.2s;
}

.toast-notification .toast-close:hover {
    color: #ffffff;
}

.toast-success i { color: #34a853; }
.toast-error i { color: #ea4335; }
.toast-warning i { color: #fbbc04; }
.toast-info i { color: #1a73e8; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .categories-section {
        padding: 0 16px 12px;
    }
    .category-btn {
        font-size: 12px;
        padding: 6px 14px;
    }
    .category-btn i {
        font-size: 12px;
    }
    .toast-notification {
        bottom: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
        padding: 12px 18px;
        font-size: 14px;
    }
    .type-label {
        padding: 10px 14px;
    }
    .type-label .type-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }
    .input-prefix {
        font-size: 12px;
        left: 10px;
    }
    .input-wrapper.has-prefix input {
        padding-left: 38px;
    }
}