/* ===== INDEX OPTIMIZED CSS ===== */

/* ===== VACATION NOTICE ===== */
.vacation-notice {
    display: none;
}

.vacation-notice.hidden {
    display: none !important;
}

.vacation-notice:not(.hidden) {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.vacation-icon {
    font-size: 1.2rem;
    color: #fbbf24;
}

.vacation-text {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

/* ===== MAIN ELEMENT ===== */
main#main-content {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
}

/* ===== HERO SECTION ===== */
.hero {
    background: url('../IMG/ohone-it-service-schopfheim-hero.jpg') center center/cover no-repeat;
    margin-bottom: 0;
    padding: 0 0 0 0;
    height: auto;
    min-height: 85vh;
    position: relative;
}

.hero .hero-content {
    padding: 0.5rem 2rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    min-height: 85vh;
    max-width: 50%;
    padding-top: 15vh;
}

.hero .hero-buttons {
    margin-bottom: 0 !important;
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 16px;
    justify-content: center;
    margin-top: 2rem;
}

.hero .btn-neon {
    margin-left: 24px;
}

/* Hero Title Gradient Effect */
.hero .hero-title {
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    margin-bottom: 1rem;
}

.hero .hero-title.glow-effect::after { 
    content: none; 
    display: none; 
}

.hero .neon-text { 
    background: inherit; 
    -webkit-background-clip: text; 
    background-clip: text;
    -webkit-text-fill-color: transparent; 
    color: transparent; 
    text-shadow: none; 
}

.hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Floating Elements */
.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 0.5rem;
    justify-content: end;
    align-content: center;
    padding-right: 2rem;
}

.floating-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    pointer-events: auto;
    max-width: 160px;
}

.floating-icon-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.floating-icon {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.icon-label {
    font-size: 0.7rem;
    font-weight: 500;
}

/* Mobile Layout für Hero */
@media (max-width: 768px) {
    .hero .hero-content {
        max-width: 100%;
        align-items: center;
        text-align: center;
        padding: 0.125rem 2rem;
        padding-top: 10vh;
        --hero-padding-top: 0.5rem;
        padding-bottom: 0 !important;
    }
    
    .hero-visual {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: auto;
        margin-top: -9rem !important;
    }
    
    .floating-elements {
        justify-content: center;
        padding-right: 0;
        padding: 0;
        gap: 0;
        margin-top: -7rem !important;
    }
    
    /* Zusätzliche spezifische Regel für den Abstand */
    .hero .hero-content .hero-buttons {
        margin-bottom: 0 !important;
    }
    
    .hero .hero-visual .floating-elements {
        margin-top: -8rem !important;
    }
}



/* ===== SERVICES SECTION ===== */
.services {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    margin-bottom: 0;
    padding: 2rem 0 0 0;
    height: auto;
}

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

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-innerbox {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-innerbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-innerbox:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.service-innerbox:hover::before {
    opacity: 1;
}

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

.service-innerbox h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.service-innerbox p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* ===== ABOUT SECTION ===== */
.about {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 2rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.8rem;
    align-items: start;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

.about-qualities {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-qualities h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
}

.about-qualities h3 .highlight {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(59, 130, 246, 0.5);
    font-family: 'Zapfino', cursive;
}

.about-skills {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-image {
    position: relative;
    padding-top: 12rem;
}

.team-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-text h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.qualities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.quality-icon {
    color: #60a5fa;
    font-weight: bold;
}



/* Mobile Layout für About-Grid */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 0.5rem;
        width: 95%;
    }
    
    .about-image {
        padding-top: 0;
        padding-bottom: 0;
        grid-row: 2;
    }
    
    .about-qualities {
        grid-row: 1;
    }
    
    .compact-partners-container {
        grid-row: 5;
    }
    
    .about-skills {
        grid-row: 4;
    }
}

.skills {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 20px;
}

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

.skill-name {
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    margin-bottom: 0.5rem;
}

.skill-name .animated-number {
    color: #60a5fa;
    font-weight: bold;
    font-size: 1.1em;
    text-shadow: 0 0 5px rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
}

.skill:hover .skill-name {
    opacity: 1;
}

.skill:hover .skill-name .animated-number {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.8);
}

.skill-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.skill-level {
    height: 100%;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    border-radius: 4px;
    transition: width 1s ease;
    width: 0%; /* Start at 0% */
}



/* ===== HOURS SECTION ===== */
.hours {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 4rem 0;
}

.hours-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

/* Kompakte Öffnungszeiten Box in Kontakt-Sektion */
.compact-hours-container {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.compact-hours-title {
    margin-bottom: 1.5rem;
    text-align: center;
}

.compact-hours-title h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.vacation-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.vacation-notice.hidden {
    display: none !important;
}

.vacation-notice:not(.hidden) {
    display: flex !important;
}

.vacation-icon {
    font-size: 1.2rem;
    color: #fbbf24;
}

.vacation-text {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.compact-hours-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #60a5fa;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    color: #ffffff;
    font-weight: 500;
}

.status-text.vacation {
    color: #fbbf24;
    font-weight: 600;
}



.compact-hours-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.compact-hours-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.compact-hours-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.compact-hours-day:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.compact-hours-day .day {
    font-weight: 600;
    color: #60a5fa;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.compact-hours-day .time {
    color: #ffffff;
    font-size: 0.9rem;
    text-align: center;
}

/* Heutiger Tag Hervorhebung */
.compact-hours-day.today {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
    transform: scale(1.05);
    z-index: 10;
}

.compact-hours-day.today .day {
    color: #10b981;
    font-weight: 700;
}

.compact-hours-day.today .time {
    color: #10b981;
    font-weight: 700;
}

.compact-hours-note {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.note-text {
    color: #60a5fa;
    font-size: 0.8rem;
    font-style: italic;
    text-align: center;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    margin-bottom: 0;
    padding: 2rem 0 1rem 0;
    height: auto;
}

.contact .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

.contact .section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 3rem;
    color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: minmax(350px, 400px) 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

/* Contact Info Styling */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 1;
    visibility: visible;
}

/* Left column container for contact info and hours */
.contact-left-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
    width: 100%;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-details p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Styling */
.contact-popup-body {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899, #3b82f6);
    background-size: 400% 400%;
    animation: gradient-shift 3s ease infinite;
    border: none;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    opacity: 1;
    visibility: visible;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: #000000;
    color: #ffffff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: #000000;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select option {
    background: #000000;
    color: #ffffff;
}

/* Form Row 2 Columns */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-col {
    width: 100%;
}

/* Captcha Styling */
.captcha-group {
    margin-bottom: 1.5rem;
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.captcha-row label {
    white-space: nowrap;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.captcha-row input {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: #000000;
    color: #ffffff;
    font-size: 1rem;
    height: 48px;
}

.captcha-row input:focus {
    outline: none;
    border-color: #3b82f6;
    background: #000000;
}

.captcha-row input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.captcha-row button {
    white-space: nowrap;
    padding: 0.75rem 1rem;
    width: auto !important;
    min-width: 80px;
    flex-shrink: 0;
    height: 48px;
    margin: 0 !important;
}

.captcha-math {
    font-weight: bold;
    color: #ef4444;
    white-space: pre;
    font-size: 1.1em;
    background: rgba(96, 165, 250, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Checkbox Styling */
.form-group label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.white-text {
    color: #ffffff;
}

.form-group a {
    color: #60a5fa;
    text-decoration: none;
}

.form-group a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

.label-checkbox-inline {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.label-checkbox-inline input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Button Styling */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-gradient {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.btn-neon {
    background: transparent;
    color: #60a5fa;
    border: 2px solid #60a5fa;
}

.btn-neon:hover {
    background: #60a5fa;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(96, 165, 250, 0.3);
}

.form-hint {
    text-align: center;
    margin-top: 1rem;
    color: #ef4444;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

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

/* Tablet - mittlere Bildschirme */
@media (max-width: 1024px) and (min-width: 769px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .contact-left-column {
        max-width: none;
    }
    
    .compact-hours-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile - kleine Bildschirme */
@media (max-width: 768px) {
    .hero {
        background: url('../IMG/ohone-it-service-schopfheim-hero-mobile.jpg') center center/cover no-repeat;
    }
    
    .hero .hero-content {
        padding: 1rem;
    }
    
    .floating-elements {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hours-content {
        padding: 0 1rem;
    }
    
    .compact-hours-container {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .compact-hours-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .holidays-section {
        margin-left: 0;
        width: 100%;
    }
    

    
    .compact-hours-day {
        padding: 0.75rem;
    }
    
    .compact-hours-day .day {
        font-size: 1rem;
    }
    
    .compact-hours-day .time {
        font-size: 0.8rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-left-column {
        gap: 1.5rem;
        max-width: none;
    }
    
    .compact-hours-container {
        padding: 1rem;
    }
    
    .compact-hours-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .compact-hours-day {
        padding: 0.75rem;
    }
    
    .compact-hours-day .day {
        font-size: 1rem;
    }
    
    .compact-hours-day .time {
        font-size: 0.8rem;
    }
    
    .contact-popup-body {
        padding: 1.5rem;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
}

/* Sehr kleine Bildschirme */
@media (max-width: 480px) {
    .contact-content {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .compact-hours-container {
        padding: 0.75rem;
    }
    
    .compact-hours-title h3 {
        font-size: 1.3rem;
    }
    
    .compact-hours-row {
        gap: 0.5rem;
    }
    
    .compact-hours-day {
        padding: 0.5rem;
    }
    
    .compact-hours-day .day {
        font-size: 0.9rem;
    }
    
    .compact-hours-day .time {
        font-size: 0.75rem;
    }
    
    .contact-popup-body {
        padding: 1rem;
    }
    
    .form-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    .form-row-2 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .contact-popup-body {
        padding: 1.5rem;
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .captcha-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .captcha-row label {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .captcha-row input {
        max-width: none;
        width: 100%;
    }
    
    .captcha-row button {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .qualities {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero .hero-title {
        font-size: 1.8rem;
    }
    
    .hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-innerbox {
        padding: 1.5rem;
    }
    
    .about-text h3 {
        font-size: 2rem;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
}

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

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Form Animation */
.contact-popup-body .form-intro {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-popup-body .form-intro.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-popup-body .form-group {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-popup-body .form-group.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-popup-body button[type="submit"] {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-popup-body button[type="submit"].animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HERO PARTICLES ===== */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

/* ===== SKILL LEVELS ===== */
.skill-level-90 { width: 90%; }
.skill-level-85 { width: 85%; }
.skill-level-75 { width: 75%; }
.skill-level-70 { width: 70%; }

/* ===== REPAIR CATEGORIES ===== */
.repair-category-mobile {
    background-image: url('../IMG/ohone-smartphone-tablet-reparatur-schopfheim.jpg');
    background-size: cover;
    background-position: center;
}

.repair-category-computer {
    background-image: url('../IMG/ohone-computer-laptop-reparatur-schopfheim.jpg');
    background-size: cover;
    background-position: center;
}

.repair-category-gaming {
    background-image: url('../IMG/ohone-spielkonsolen-reparatur-schopfheim.jpg');
    background-size: cover;
    background-position: center;
}

/* ===== AI INTEGRATION ===== */
.ai-content {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.ai-text {
    flex: 1 1 340px;
    min-width: 320px;
    max-width: 600px;
}

.ai-title {
    text-align: left;
    left: 0;
    transform: none;
}

.ai-intro {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.ai-benefits {
    background: var(--primary-color-light);
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(91,188,255,0.10);
    max-width: 600px;
}

.ai-benefits-title {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.ai-benefits-list {
    margin: 0.5rem 0 0 1.2rem;
    color: #222;
}

.ai-services-title {
    margin-top: 1.5rem;
    color: var(--primary-color);
}

.ai-list {
    color: #fff;
}

.ai-conclusion {
    margin-top: 1.5rem;
    color: #fff;
    max-width: 600px;
}

.ai-visual {
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
}

.ai-animation {
    background-image: url('../IMG/ohone-ki-integration-automatisierung-schopfheim.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 24px rgba(91,188,255,0.10);
    min-width: 260px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.ai-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 18px;
    z-index: 1;
}

.ai-text-overlay {
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-size: 1.2rem;
    margin-top: auto;
    margin-bottom: 2rem;
}

/* ===== TRAINING SECTION ===== */
.training {
    background-image: url('../IMG/ohone-it-schulklasse-kurs-schopfheim.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    padding: 4rem 0;
}

.training .container {
    position: relative;
    z-index: 2;
}

.training::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.3) 0%, rgba(22, 33, 62, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.training-card {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.training-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.training-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

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

.training-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.5));
    transition: all 0.3s ease;
}

.training-card:hover .training-icon {
    filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.8));
    transform: scale(1.1);
}

.training-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.training-details {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.training-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #60a5fa;
    transition: all 0.3s ease;
}

.training-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.2rem;
    min-width: 1.5rem;
    text-align: center;
    color: #60a5fa;
    font-weight: bold;
}

.feature-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
}

.training-description {
    margin-top: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(0, 255, 255, 0.1));
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.training-description p {
    color: #ffffff;
    font-size: 0.85rem;
    font-style: italic;
    text-align: center;
    margin: 0;
}

/* Mobile Training Background */
@media (max-width: 768px) {
    .training {
        background-image: url('../IMG/ohone-kurs-it-schulklasse-schopfheim.jpg');
    }
    
    .training-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .training-card {
        padding: 1.5rem;
    }
}

/* ===== GOOGLE STATUS CONTAINER ===== */
.google-status-container {
    margin-bottom: 2rem;
}

/* ===== CONTACT LINKS ===== */
.contact-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
}

/* ===== HIDDEN FIELD ===== */
.hidden-field {
    display: none;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.btn:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Input error styles */
.input-error {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.1) !important;
}

.form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.form-error::before {
    content: "⚠️";
    font-size: 1rem;
}

/* ===== RELOAD CAPTCHA BUTTON ===== */
.reload-captcha-btn {
    margin-left: 10px;
}

/* ===== COOKIE CONSENT ===== */
.cookie-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(31,41,55,0.5);
    z-index: 9998;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 10vh;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 600px;
    background: #1f2937;
    color: white;
    padding: 2rem 1.5rem;
    z-index: 9999;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    border-radius: 18px;
}

.cookie-content {
    max-width: 500px;
    margin: 0 auto;
}

.cookie-text {
    font-size: 1.1rem;
}

.cookie-link {
    color: #60a5fa;
    text-decoration: underline;
}

.cookie-buttons {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cookie-btn {
    background: #2563eb;
    color: white;
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn.btn-secondary {
    background: #6b7280;
}

.cookie-btn.btn-outline {
    background: #1e40af;
}

.cookie-customize {
    display: none;
    margin-top: 1.5rem;
    background: #374151;
    padding: 1rem;
    border-radius: 10px;
}

.cookie-checkbox {
    display: block;
    margin-bottom: 0.5rem;
}

.save-cookie-btn {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ===== MODALS ===== */
.modal,
.modal-success,
.modal-error {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

/* Form Success/Error Modals */
#form-success-modal {
  position: fixed;
  z-index: 99999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(10,10,10,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

#form-success-modal.hidden {
  display: none !important;
}
.form-success-box {
  background: #1a1a1a;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(34,197,94,0.18);
  border: 2px solid #22c55e;
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 95vw;
  width: 350px;
  text-align: center;
  animation: popin 0.3s;
}
.form-success-title {
  font-size: 1.3rem;
  color: #22c55e;
  font-weight: 700;
  margin-bottom: 1rem;
}
.form-success-text {
  font-size: 1.05rem;
  color: #cccccc;
}

#form-error-modal {
  position: fixed;
  z-index: 99999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(10,10,10,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

#form-error-modal.hidden {
  display: none !important;
}
.form-error-box {
  background: #1a1a1a;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(255,26,26,0.18);
  border: 2px solid #ff1a1a;
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 95vw;
  width: 350px;
  text-align: center;
  animation: popin 0.3s;
}
.form-error-title {
  font-size: 1.3rem;
  color: #ff1a1a;
  font-weight: 700;
  margin-bottom: 1rem;
}
.form-error-text {
  font-size: 1.05rem;
  color: #cccccc;
}

.modal-button-margin {
  margin-top: 1.5rem;
}

@keyframes popin {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ===== CONTACT POPUP STYLES ===== */
#contact-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

#contact-popup.hidden {
    display: none !important;
}

.contact-popup-content {
    background: linear-gradient(135deg, #312e81 0%, #a21caf 100%);
    border-radius: 18px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(49,46,129,0.3);
}

.contact-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    border-radius: 18px 18px 0 0;
}

.contact-popup-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.5rem;
}

.popup-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #ffffff;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.contact-popup-body {
    padding: 2rem;
    border-radius: 18px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-purple), var(--accent-pink), var(--primary-color));
    background-size: 400% 400%;
    animation: gradient-shift 3s ease infinite;
    box-shadow: 0 4px 24px rgba(49,46,129,0.10);
}

.contact-popup-body .form-group {
    margin-bottom: 1.5rem;
}

.contact-popup-body .form-group label {
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-popup-body .form-group input,
.contact-popup-body .form-group select,
.contact-popup-body .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: #000000;
    color: #ffffff;
    font-size: 1rem;
}

.contact-popup-body .form-group input:focus,
.contact-popup-body .form-group select:focus,
.contact-popup-body .form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: #000000;
}

.contact-popup-body .form-group input::placeholder,
.contact-popup-body .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-popup-body .form-group select option {
    background: #000000;
    color: #ffffff;
}

.contact-popup-body .captcha-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-end;
}

.contact-popup-body .captcha-group input {
    flex: 1;
}

.contact-popup-body .captcha-group button {
    white-space: nowrap;
}

.contact-popup-body .form-hint {
    font-size: 0.9rem;
    color: #ef4444;
    margin-top: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contact-popup-body .white-text {
    color: #ffffff;
}

.contact-popup-body a {
    color: #ffffff;
    text-decoration: underline;
}

.contact-popup-body a:hover {
    color: var(--primary-color);
}

#contact-popup .contact-popup-body .form-group label {
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
}

#contact-popup .contact-popup-body .form-group label input[name="datenschutz"] {
    margin-right: 0.5rem;
    width: auto;
    height: auto;
}

#contact-popup .contact-popup-body .form-group label span,
#contact-popup .contact-popup-body .form-group label a {
    color: #ffffff;
    font-weight: normal;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Mobile Anpassungen für Popup */
@media (max-width: 768px) {
    .contact-popup-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .contact-popup-header {
        padding: 1rem 1.5rem;
    }
    
    .contact-popup-body {
        padding: 1.5rem;
    }
    
    .contact-popup-body .captcha-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contact-popup-body .captcha-group button {
        margin-top: 0.5rem;
    }
}

/* ===== SERVICES BOXEN Sektion ===== */
.services-boxes-section {
    background: transparent;
    padding: 2rem 0 1rem 0;
    color: #ffffff;
}

.services-boxes-section .section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.service-box {
    background: linear-gradient(135deg, #4c1d95 0%, #6b21a8 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 20px;
    margin: 0 0.5rem 2rem 0.5rem;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(76, 29, 149, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(76, 29, 149, 0.6);
    border-color: rgba(147, 51, 234, 0.6);
}

.service-box:hover::before {
    opacity: 1;
}

.service-box-header {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(147, 51, 234, 0.3);
}

.service-box-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

.service-box-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 2rem;
    align-items: stretch;
}

.service-box-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    height: 100%;
    min-height: 300px;
}

.service-box-image img,
.service-box-image picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-box-image picture {
    display: block;
}

.service-box:hover .service-box-image img,
.service-box:hover .service-box-image picture {
    transform: scale(1.05);
}

.service-box-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-box-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-box-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-box-text ul li {
    padding: 0.5rem 0;
    color: #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.service-box-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #a855f7;
    font-weight: bold;
}

.service-box-category {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
    border-left: 4px solid #a855f7;
}

.mobile-devices-category {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../IMG/ohone-computer-laptop-reparatur-detail-schopfheim.jpg') center center/cover no-repeat;
    border-left: 4px solid #3b82f6;
    position: relative;
    overflow: hidden;
}

.mobile-devices-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    pointer-events: none;
}

.mobile-devices-category h4,
.mobile-devices-category ul li {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.mobile-devices-category h4 {
    color: #ffffff;
    font-weight: 700;
}

.mobile-devices-category ul li {
    color: #f1f5f9;
    font-weight: 500;
}

.computer-laptops-category {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../IMG/ohone-hardware-reparatur-schopfheim.jpg') center center/cover no-repeat;
    border-left: 4px solid #10b981;
    position: relative;
    overflow: hidden;
}

.computer-laptops-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    pointer-events: none;
}

.computer-laptops-category h4,
.computer-laptops-category ul li {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.computer-laptops-category h4 {
    color: #ffffff;
    font-weight: 700;
}

.computer-laptops-category ul li {
    color: #f1f5f9;
    font-weight: 500;
}

.gaming-consoles-category {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../IMG/ohone-playstation-xbox-nintendo-reparatur-schopfheim.jpg') center center/cover no-repeat;
    border-left: 4px solid #f59e0b;
    position: relative;
    overflow: hidden;
}

.gaming-consoles-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.1));
    pointer-events: none;
}

.gaming-consoles-category h4,
.gaming-consoles-category ul li {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.gaming-consoles-category h4 {
    color: #ffffff;
    font-weight: 700;
}

.gaming-consoles-category ul li {
    color: #f1f5f9;
    font-weight: 500;
}

.data-recovery-category {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../IMG/ohone-datenrettung-schopfheim.jpg') center center/cover no-repeat;
    border-left: 4px solid #8b5cf6;
    position: relative;
    overflow: hidden;
}

.data-recovery-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    pointer-events: none;
}

.data-recovery-category h4,
.data-recovery-category ul li {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.data-recovery-category h4 {
    color: #ffffff;
    font-weight: 700;
}

.data-recovery-category ul li {
    color: #f1f5f9;
    font-weight: 500;
}

.ki-benefits-category {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../IMG/ohone-ki-integration-automatisierung-schopfheim.jpg') center center/cover no-repeat !important;
    border-left: 4px solid #06b6d4 !important;
    position: relative;
    overflow: hidden;
}

.ki-benefits-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    pointer-events: none;
}

.ki-benefits-category h4,
.ki-benefits-category ul li {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.ki-benefits-category h4 {
    color: #ffffff !important;
    font-weight: 700;
}

.ki-benefits-category ul li {
    color: #f1f5f9 !important;
    font-weight: 500;
}

.ki-services-category {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../IMG/ohone-ki-integration-gehirn-schopfheim.jpg') center center/cover no-repeat !important;
    border-left: 4px solid #ec4899;
    position: relative;
    overflow: hidden;
}

.ki-services-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(6, 182, 212, 0.1));
    pointer-events: none;
}

.ki-services-category h4,
.ki-services-category ul li {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.ki-services-category h4 {
    color: #ffffff !important;
    font-weight: 700;
}

.ki-services-category ul li {
    color: #f1f5f9 !important;
    font-weight: 500;
}

.it-operating-systems-category {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../IMG/ohone-it-schulung-betriebssystem-schopfheim.jpg') center center/cover no-repeat !important;
    border-left: 4px solid #f97316;
    position: relative;
    overflow: hidden;
}

.it-operating-systems-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(59, 130, 246, 0.1));
    pointer-events: none;
}

.it-operating-systems-category h4,
.it-operating-systems-category ul li {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.it-operating-systems-category h4 {
    color: #ffffff !important;
    font-weight: 700;
}

.it-operating-systems-category ul li {
    color: #f1f5f9 !important;
    font-weight: 500;
}

.it-office-software-category {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../IMG/ohone-it-schulung-office-schopfheim.jpg') center center/cover no-repeat !important;
    border-left: 4px solid #0891b2;
    position: relative;
    overflow: hidden;
}

.it-office-software-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(59, 130, 246, 0.1));
    pointer-events: none;
}

.it-office-software-category h4,
.it-office-software-category ul li {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.it-office-software-category h4 {
    color: #ffffff !important;
    font-weight: 700;
}

.it-office-software-category ul li {
    color: #f1f5f9 !important;
    font-weight: 500;
}

.it-smartphone-tablet-category {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../IMG/ohone-it-schulung-betriebssystem-tablet-schopfheim.jpg') center center/cover no-repeat !important;
    border-left: 4px solid #10b981;
    position: relative;
    overflow: hidden;
}

.it-smartphone-tablet-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    pointer-events: none;
}

.it-smartphone-tablet-category h4,
.it-smartphone-tablet-category ul li {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.it-smartphone-tablet-category h4 {
    color: #ffffff !important;
    font-weight: 700;
}

.it-smartphone-tablet-category ul li {
    color: #f1f5f9 !important;
    font-weight: 500;
}

.it-security-category {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../IMG/ohone-it-schulung-sicherheit-schopfheim.jpg') center center/cover no-repeat !important;
    border-left: 4px solid #dc2626;
    position: relative;
    overflow: hidden;
}

.it-security-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.1));
    pointer-events: none;
}

.it-security-category h4,
.it-security-category ul li {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.it-security-category h4 {
    color: #ffffff !important;
    font-weight: 700;
}

.it-security-category ul li {
    color: #f1f5f9 !important;
    font-weight: 500;
}

.webdesign-programming-category {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../IMG/ohone-webdesign-code-schopfheim.jpg') center center/cover no-repeat !important;
    border-left: 4px solid #7c3aed;
    position: relative;
    overflow: hidden;
}

.webdesign-programming-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(59, 130, 246, 0.1));
    pointer-events: none;
}

.webdesign-programming-category h4,
.webdesign-programming-category ul li {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.webdesign-programming-category h4 {
    color: #ffffff !important;
    font-weight: 700;
}

.webdesign-programming-category ul li {
    color: #f1f5f9 !important;
    font-weight: 500;
}

.webdesign-design-category {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../IMG/ohone-webdesign-gestaltung-schopfheim.jpg') center center/cover no-repeat !important;
    border-left: 4px solid #ec4899;
    position: relative;
    overflow: hidden;
}

.webdesign-design-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(124, 58, 237, 0.1));
    pointer-events: none;
}

.webdesign-design-category h4,
.webdesign-design-category ul li {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.webdesign-design-category h4 {
    color: #ffffff !important;
    font-weight: 700;
}

.webdesign-design-category ul li {
    color: #f1f5f9 !important;
    font-weight: 500;
}

.network-installation-category {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../IMG/ohone-netzwerk-serverschrank-schopfheim.jpg') center center/cover no-repeat !important;
    border-left: 4px solid #059669;
    position: relative;
    overflow: hidden;
}

.network-installation-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(59, 130, 246, 0.1));
    pointer-events: none;
}

.network-installation-category h4,
.network-installation-category ul li {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.network-installation-category h4 {
    color: #ffffff !important;
    font-weight: 700;
}

.network-installation-category ul li {
    color: #f1f5f9 !important;
    font-weight: 500;
}

.network-support-category {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../IMG/ohone-netzwerk-itunternehmen-schopfheim.jpg') center center/cover no-repeat !important;
    border-left: 4px solid #0d9488;
    position: relative;
    overflow: hidden;
}

.network-support-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(59, 130, 246, 0.1));
    pointer-events: none;
}

.network-support-category h4,
.network-support-category ul li {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.network-support-category h4 {
    color: #ffffff !important;
    font-weight: 700;
}

.network-support-category ul li {
    color: #f1f5f9 !important;
    font-weight: 500;
}

.service-box-category h4 {
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.service-box-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.service-box-benefits,
.service-box-services {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
    border-left: 4px solid #a855f7;
}

.service-box-benefits h4,
.service-box-services h4 {
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.service-box-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
    border-left: 4px solid #a855f7;
}

.feature-highlight .feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Enhanced readability for feature highlight text */
.feature-highlight h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff !important;
    margin: 0 0 0.25rem 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.feature-highlight p {
    font-size: 0.9rem;
    color: #e2e8f0 !important;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Enhanced hover state readability */
.feature-highlight:hover h5 {
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3), 0 1px 3px rgba(0, 0, 0, 0.8) !important;
}

.feature-highlight:hover p {
    color: #f8fafc !important;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.6) !important;
}

.service-box-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 1rem;
}

.service-box-cta .btn {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-box-cta .btn-gradient {
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
    color: #ffffff;
    border: none;
}

.service-box-cta .btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
}

.service-box-cta .btn-neon {
    background: transparent;
    color: #ffffff;
    border: 2px solid #a855f7;
    position: relative;
    overflow: hidden;
}

.service-box-cta .btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), transparent);
    transition: left 0.5s;
}

.service-box-cta .btn-neon:hover::before {
    left: 100%;
}

.service-box-cta .btn-neon:hover {
    background: rgba(168, 85, 247, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

/* Services Boxes Section Container Override */
.services-boxes-section .container {
    padding: 0 0 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-boxes-section {
        padding: 2rem 0;
    }
    
    .services-boxes-section .container {
        padding: 0 0 !important;
    }
    
    .service-box-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .service-box-image {
        min-height: 200px;
    }
    
    .service-box-image img,
    .service-box-image picture {
        height: 100%;
    }
    
    .service-box-header {
        padding: 1rem;
    }
    
    .service-box-header h3 {
        font-size: 1.25rem;
    }
    
    .service-box-features {
        grid-template-columns: 1fr;
    }
    
    .service-box-cta {
        flex-direction: column;
    }
    
    .service-box-cta .btn {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .services-boxes-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .service-box {
        margin: 0 0.5rem 2rem 0.5rem;
    }
    
    .service-box-content {
        padding: 1rem;
    }
    
    .service-box-image {
        min-height: 150px;
    }
    
    .service-box-image img,
    .service-box-image picture {
        height: 100%;
    }
}

/* ===== FOOTER SOCIAL ICONS ===== */
.social-icon svg {
    border-radius: 3px;
}

/* ===== CAPTCHA BUTTON ===== */
.captcha-reload-button {
    margin-left: 10px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner-text {
    font-size: 1.1rem;
}

.cookie-banner-link {
    color: #60a5fa;
    text-decoration: underline;
}

.cookie-banner-buttons {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cookie-button {
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-button-accept {
    background: #2563eb;
    color: white;
}

.cookie-button-decline {
    background: #6b7280;
    color: white;
}

.cookie-button-customize {
    background: #1e40af;
    color: white;
}

.cookie-banner-content {
    max-width: 500px;
    margin: 0 auto;
}

#cookie-customize {
    display: none;
    margin-top: 1.5rem;
    background: #374151;
    padding: 1rem;
    border-radius: 10px;
}

.cookie-customize-label {
    display: block;
    margin-bottom: 0.5rem;
}

.cookie-save-button {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ===== COOKIE BANNER BASE STYLES ===== */
#cookie-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(31, 41, 55, 0.5);
    z-index: 9998;
}

#cookie-banner {
    display: none;
    position: fixed;
    bottom: 10vh;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 600px;
    background: #1f2937;
    color: white;
    padding: 2rem 1.5rem;
    z-index: 9999;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    border-radius: 18px;
}

/* ===== KOMPAKTE PARTNER BOX ===== */
.compact-partners-container {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

/* Desktop: Partner Box in About-Sektion */
@media (min-width: 769px) {
    .about .compact-partners-container {
        max-width: none;
        margin: 0;
    }
}

.compact-partners-title {
    margin-bottom: 1rem;
    text-align: center;
}

.compact-partners-title h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.compact-partners-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.compact-partners-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.compact-partner-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.compact-partner-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.compact-partner-item .partner-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
}

.compact-partner-item .partner-link {
    color: #60a5fa;
    text-decoration: none;
    font-size: 0.7rem;
    text-align: center;
    padding: 0.4rem;
    border-radius: 6px;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.2);
    transition: all 0.3s ease;
}

.compact-partner-item .partner-link:hover {
    background: rgba(96, 165, 250, 0.2);
    color: #93c5fd;
    transform: translateY(-1px);
}

/* ===== FORM SUCCESS/ERROR MODALS ===== */
#form-success-modal {
  position: fixed;
  z-index: 99999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(10,10,10,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success-box {
  background: #1a1a1a;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(34,197,94,0.18);
  border: 2px solid #22c55e;
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 95vw;
  width: 350px;
  text-align: center;
  animation: popin 0.3s;
}
.form-success-title {
  font-size: 1.3rem;
  color: #22c55e;
  font-weight: 700;
  margin-bottom: 1rem;
}
.form-success-text {
  font-size: 1.05rem;
  color: #cccccc;
}

#form-error-modal {
  position: fixed;
  z-index: 99999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(10,10,10,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

#form-error-modal.hidden {
  display: none !important;
}
.form-error-box {
  background: #1a1a1a;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(255,26,26,0.18);
  border: 2px solid #ff1a1a;
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 95vw;
  width: 350px;
  text-align: center;
  animation: popin 0.3s;
}
.form-error-title {
  font-size: 1.3rem;
  color: #ff1a1a;
  font-weight: 700;
  margin-bottom: 1rem;
}
.form-error-text {
  font-size: 1.05rem;
  color: #cccccc;
}

.modal-button-margin {
  margin-top: 1.5rem;
}

@keyframes popin {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ===== FORM LOADING OVERLAY ===== */
#form-loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

#form-loading-overlay.active {
    display: flex;
}

#form-loading-overlay .form-loading-spinner {
    width: 100px;
    height: 100px;
    position: relative;
}

#form-loading-overlay .spinner-ring {
    width: 100%;
    height: 100%;
    border: 8px solid rgba(251, 191, 36, 0.2);
    border-top: 8px solid #f59e0b;
    border-radius: 50%;
    animation: enhanced-spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

@keyframes enhanced-spin {
    to { transform: rotate(360deg); }
}

/* ===== INPUT ERROR STYLES ===== */
.input-error {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.1) !important;
}

.form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ===== CAPTCHA RELOAD BUTTON ===== */
.captcha-reload-margin {
    margin-left: 10px !important;
}
