.ccf-wrapper {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.startpage-contactform .ccf-wrapper {max-width: 800px;}
.ccf-wrapper h3 {
    text-align: center;
    margin-bottom: 20px;
}

.ccf-form input,
.ccf-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px!important;
}

.ccf-form button {
    background: #4CAF50;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s;
}

.ccf-form button:hover {
    background: #45a049;
}

.ccf-response {
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
}
.ccf-response.success { color: green; }
.ccf-response.error { color: red; }

/* Base styles (shared) */
.ccf-wrapper {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.ccf-form input,
.ccf-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}
.ccf-form button {
    padding: 12px;
    border: none;
    border-radius: 6px;
    width: 100%;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}
.ccf-response { margin-top: 15px; text-align: center; }
.ccf-response.success { 
    color: green;
    background: white;
    padding: 1rem;
    border-radius: .4rem;
}
.ccf-response.error { 
color: red;
    background: white;
    padding: 1rem;
    border-radius: .4rem; 
}

/* --- Presets --- */

/* Modern gradient */
.preset-modern {
    background: linear-gradient(135deg, #53da41 0%, #4ba30f 100%);
    color: #fff;
}
.preset-modern .ccf-form button {
    background: #fff;
    color: #4ba30f;
}
.preset-modern .ccf-form button:hover {
    background: #f8f9ff;
}

/* Glassmorphism */
.preset-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}
.preset-glass .ccf-form input,
.preset-glass .ccf-form textarea {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
}

/* Dark Premium */
.preset-dark {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
}
.preset-dark .ccf-form button {
   background: linear-gradient(45deg, #346d96, #076387);
    color: #ffffff;
}

/* Minimal Luxury */
.preset-minimal {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #2d3748;
}
.preset-minimal .ccf-form button {
    background: #000;
    color: #fff;
}

/* Neon Cyber */
.preset-neon {
    background: #0c0c0c;
    color: #00ffff;
    box-shadow: 0 0 30px rgba(0,255,255,0.3);
}
.preset-neon .ccf-form input,
.preset-neon .ccf-form textarea {
    background: rgba(0,0,0,0.6);
    border: 1px solid #00ffff;
    color: #00ffff;
}
.preset-neon .ccf-form button {
    background: linear-gradient(45deg, #fff, #00ffff);
    color: #000;
}

/* Nature Organic */
.preset-nature {
    background: linear-gradient(135deg, #e9ac2e, #e7bd25);
    color: #2d5016;
}
.preset-nature .ccf-form button {
    background: #2d5016;
    color: #fff;
}
