/* Container for the cursor elements - Ensure these are at the end of your <body> */
.cursor-dot, 
.cursor-outline, 
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%); /* Centers the cursor on the mouse point */
    pointer-events: none;
    z-index: 9999;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: #0061ff; /* Matches your icon primary blue */
    border-radius: 50%;
    transition: transform 0.1s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 97, 255, 0.3);
    border-radius: 50%;
    transition: all 0.2s ease-out;
    backdrop-filter: blur(1px);
}

.cursor-glow {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(96, 239, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

/* FIX: Professional Hover States 
   Instead of using CSS siblings (which are unreliable for cursors), 
   use a class toggled by JavaScript on the <body> or the cursor itself.
*/
body.cursor-hovering .cursor-outline {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(0, 97, 255, 0.05);
    border-color: #60efff;
}
/* Vertical Social Icons - Below Form */
.home__social {
    display: grid;
    grid-template-columns: max-content;
    row-gap: 0.8rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    justify-content: start;
}

.home__social-icon {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    color: #0061ff;
    text-decoration: none;
    transition: 0.3s ease;
    padding: 0.5rem 0;
}

.home__social-icon i {
    width: 24px;
    font-size: 1.3rem;
}

.home__social-icon span {
    font-size: 0.85rem;
    font-family: 'Courier New', monospace;
    color: #b0b0b0;
}

.home__social-icon:hover {
    color: #60efff;
    transform: translateX(5px);
}

.home__social-icon:hover span {
    color: #60efff;
}
/* Footer Styles */
.footer {
    background: #0a0a0a;
    color: #b0b0b0;
    text-align: center;
    padding: 2rem 3rem;
    margin-top: 4rem;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    font-size: 0.85rem;
    font-family: 'Courier New', monospace;
    color: #b0b0b0;
    margin: 0;
}

.footer-admin {
    display: flex;
    align-items: center;
}

.admin-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff4444;
    text-decoration: none;
    font-size: 0.85rem;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.admin-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.admin-link:hover {
    color: #ff6666;
    background: rgba(255, 68, 68, 0.1);
}

.admin-link:hover i {
    transform: rotate(30deg);
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-copyright p {
        font-size: 0.75rem;
    }
    
    .admin-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}
/* FAQ Section Styles */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: #d4b7a1;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.faq-header p {
    color: #b0b0b0;
    font-size: 1rem;
    font-family: 'Courier New', monospace;
}

/* Grid Layout for FAQs - 2 columns */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s ease;
    height: fit-content;
}

.faq-item:hover {
    border-color: #d4b7a1;
}

.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #252525;
}

.faq-question i {
    color: #d4b7a1;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.2rem 1.5rem;
    color: #b0b0b0;
    line-height: 1.6;
    display: none;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

.faq-answer.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive - Single column on mobile */
@media (max-width: 768px) {
    .faq-container {
        padding: 1rem;
    }
    
    .faq-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem 1rem;
        font-size: 0.8rem;
    }
}
/* Floating Icons - Bottom Right */
.floating-icons {
    position: fixed !important;
    bottom: 30px !important;
    right: 20px !important;
    z-index: 99999 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.floating-icon {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.floating-icon.whatsapp {
    background: #25D366 !important;
    color: white !important;
}

.floating-icon.discord {
    background: #5865F2 !important;
    color: white !important;
}

.floating-icon i {
    font-size: 26px !important;
}

.floating-icon:hover {
    transform: scale(1.1) !important;
}

@media (max-width: 768px) {
    .floating-icons {
        bottom: 20px !important;
        right: 15px !important;
        gap: 10px !important;
    }
    .floating-icon {
        width: 45px !important;
        height: 45px !important;
    }
    .floating-icon i {
        font-size: 22px !important;
    }
}
/* Brand Tagline Styles */
.brand-tagline {
    font-size: 1.2rem;
    font-family: 'Courier', monospace;
    margin-top: 0.5rem;
    letter-spacing: 2px;
}

.brand-tagline .brusque {
    color: #ffffff;  /* White */
    font-weight: 600;
}

.brand-tagline .tech {
    color: #ff0000;  /* Red */
    font-weight: 600;
}

.brand-tagline .does-it {
    color: #ff69b4;  /* Pink */
    font-weight: 500;
    margin-left: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-tagline {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .brand-tagline {
        font-size: 0.85rem;
    }
}
/* --- 1. Grid Container (Balanced Spacing) --- */
.projects-home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 30px 20px;
    background: #0a0a0a;
}

/* --- 2. The Compact Industrial Card --- */
.project-home-card {
    position: relative;
    background: #111111;
    border: 1px solid #222;
    border-radius: 2px; /* Sharp 2px radius as requested */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 260px; /* Reduced height for efficiency */
    transition: all 0.3s ease;
    z-index: 1;
}

.project-home-card:hover {
    border-color: #dc3545; /* Brand Red Highlight */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* --- 3. Enhanced Watermark Visibility --- */
.asymmetric-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.75; /* Higher visibility for k7.png logos */
    transition: opacity 0.3s ease;
}

.project-home-card:hover .asymmetric-bg-container {
    opacity: 0.9;
}

/* --- 4. Tightened Content Layout --- */
.card-top-row {
    padding: 15px 15px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.project-type {
    color: #555;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.card-main-info {
    padding: 0 15px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.card-main-info h3 {
    margin: 0 0 4px 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.project-description {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 90%;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

/* --- 5. Sharp Status Badges --- */
.project-status-badge {
    padding: 3px 10px;
    border-radius: 2px; /* Sharp corners */
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 1px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.status-live { background: #065f46; color: #fff; }
.status-upcoming { background: #92400e; color: #fff; }
.status-ongoing { background: #1e40af; color: #fff; }
.status-completed { background: #4c1d95; color: #fff; }

/* --- 6. Flat Progress Bar --- */
.project-progress {
    padding: 12px 15px;
    position: relative;
    z-index: 2;
}

.progress-bar {
    height: 4px; /* Slimmer line */
    background: #222;
    border-radius: 0; /* Industrial flat look */
    margin-bottom: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #dc3545; /* Brand Red */
    transition: width 1s ease-in-out;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    font-weight: 700;
    color: #555;
}

/* --- 7. Minimalist Footer --- */
.card-footer {
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.meta-item {
    color: #444;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.project-live-btn-small {
    padding: 5px 12px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 800;
    border-radius: 2px; /* Sharp corners */
    text-transform: uppercase;
    transition: 0.2s;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.project-live-btn-small:hover {
    background: #dc3545;
    color: #fff;
}
/* --- Individual Filter Buttons --- */
.filter-btn {
    background: rgba(255, 255, 255, 0.03); /* Subtle dark fill */
    border: 1px solid #333;               /* Dark border by default */
    color: #999;                          /* Muted text for inactive buttons */
    padding: 8px 20px;
    border-radius: 2px;                   /* Sharp 2px corners */
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

/* --- Hover State --- */
.filter-btn:hover {
    color: #fff;
    border-color: #666;
    background: rgba(255, 255, 255, 0.07);
}

/* --- Active/Selected State --- */
.filter-btn.active {
    background: #dc3545;                  /* Brusquetech Red */
    border-color: #dc3545;
    color: #fff;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3); /* Subtle glow */
}
/* Payment Update Box */
.payment-update-box {
    background: #252525;
    padding: 1.2rem;
    border-radius: 8px;
    margin: 1rem 0;
    border: 1px solid #333;
}

.payment-update-box h4 {
    color: #d4b7a1;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.payment-update-box h4 i {
    margin-right: 0.5rem;
}

.payment-input-group {
    margin-bottom: 1rem;
}

.payment-input-group label {
    display: block;
    color: #b0b0b0;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    overflow: hidden;
}

.input-wrapper .currency {
    background: #333;
    padding: 0.6rem 0.8rem;
    color: #d4b7a1;
    font-weight: bold;
}

.payment-input {
    flex: 1;
    padding: 0.6rem;
    background: #1a1a1a;
    border: none;
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
}

.payment-input:focus {
    outline: none;
}

.payment-presets {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.preset-btn {
    background: #333;
    color: #b0b0b0;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.3s;
}

.preset-btn:hover {
    background: #d4b7a1;
    color: #0a0a0a;
}

.update-payment-btn {
    width: 100%;
    background: #28a745;
    color: white;
    border: none;
    padding: 0.7rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    transition: all 0.3s;
    margin-bottom: 0.5rem;
}

.update-payment-btn:hover {
    background: #218838;
    transform: translateY(-2px);
}

.payment-note {
    font-size: 0.7rem;
    color: #888;
    text-align: center;
    margin-top: 0.5rem;
}

.payment-note i {
    margin-right: 0.3rem;
}

.receipt-generated {
    background: #28a745;
    color: white;
    cursor: default;
}

.receipt-generated:hover {
    background: #28a745;
    transform: none;
}
/* Contact Options - 1 Column Layout - Reduced Height */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    justify-content: center;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    padding: 15px;
    background: transparent;
}

.contact-option {
    background: #1a1a1a;
    border-radius: 0;
    padding: 12px 20px;  /* Reduced from 20px 25px */
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 15px;  /* Reduced from 20px */
    border: 1px solid #333;
}

.contact-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: #d4b7a1;
    background: #252525;
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,183,161,0.08), transparent);
    transition: left 0.5s;
}

.contact-option:hover::before {
    left: 100%;
}

.option-icon {
    font-size: 24px;  /* Reduced from 32px */
    margin-bottom: 0;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 40px;  /* Reduced from 50px */
    text-align: center;
}

.contact-option:hover .option-icon {
    transform: scale(1.05);
}

/* WhatsApp Color - Green */
.contact-option:first-child .option-icon {
    color: #25D366;
}

/* Tech Support - Blue */
.contact-option:nth-child(2) .option-icon {
    color: #007bff;
}

/* Start a Project - Red */
.contact-option:last-child .option-icon {
    color: #dc3545;
}

.option-content {
    flex: 1;
    text-align: left;
}

.option-content h4 {
    font-size: 14px;  /* Reduced from 16px */
    margin-bottom: 3px;  /* Reduced from 5px */
    color: #d4b7a1;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.option-content p {
    color: #b0b0b0;
    margin-bottom: 0;
    font-size: 11px;  /* Reduced from 12px */
    line-height: 1.3;
    font-family: 'Courier New', monospace;
}

.option-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;  /* Reduced from 32px */
    height: 28px;  /* Reduced from 32px */
    background: #252525;
    border-radius: 0;
    text-decoration: none;
    color: #d4b7a1;
    font-size: 12px;  /* Reduced from 14px */
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 1px solid #333;
}

.contact-option:hover .option-link {
    background: #d4b7a1;
    color: #0a0a0a;
    transform: rotate(90deg);
    border-color: #d4b7a1;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 10px 16px;  /* Reduced from 12px 20px */
    border-radius: 0;
    z-index: 1100;
    font-size: 12px;  /* Reduced from 14px */
    font-family: 'Courier New', monospace;
    animation: slideInRight 0.3s ease;
    border-left: 4px solid #d4b7a1;
}

/* Keyframes */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Desktop Responsive */
@media (max-width: 968px) {
    .contact-options {
        max-width: 350px;
        padding: 12px;
        gap: 10px;
    }
    
    .contact-option {
        padding: 10px 18px;
        gap: 12px;
    }
    
    .option-icon {
        font-size: 22px;
        width: 35px;
    }
    
    .option-content h4 {
        font-size: 13px;
    }
    
    .option-content p {
        font-size: 10px;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .contact-options {
        max-width: 100%;
        padding: 10px;
        gap: 8px;
    }
    
    .contact-option {
        padding: 8px 15px;
        gap: 12px;
    }
    
    .option-icon {
        font-size: 20px;
        width: 32px;
    }
    
    .option-content h4 {
        font-size: 12px;
        margin-bottom: 2px;
    }
    
    .option-content p {
        font-size: 9px;
    }
    
    .option-link {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
}
/*quote selected style*/
.selected-item {
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:.7rem .8rem;

    background:#151515;

    border:1px solid #2a2a2a;
    border-left:2px solid #d4b7a1;

    transition:all .15s;
}