.ct-container {
    padding-top: 10px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.form-contact-button {
    background-color: #000;
    color: #fff;
    padding: 10px 32px;
    border: 2px solid #D4AF37;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    transition: all 0.3s;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.form-contact-button:hover {
    background-color: #D4AF37;
    color: #000;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.form-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 2px solid #D4AF37;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.form-header {
    margin-bottom: 20px;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 15px;
}

.form-header h2 {
    margin: 0;
    color: #000;
    font-weight: 700;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-content {
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 20px;
    max-height: 50vh;
}

.form-content::-webkit-scrollbar {
    width: 8px;
}

.form-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.form-content::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 10px;
}

.form-content::-webkit-scrollbar-thumb:hover {
    background: #c4a22f;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #000;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
}

input:focus, textarea:focus {
    border-color: #D4AF37;
    outline: none;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.submit-btn {
    background-color: #000;
    color: white;
    padding: 14px 20px;
    border: 2px solid #D4AF37;
    width: 100%;
    font-size: 18px;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-color: #D4AF37;
    color: #000;
}

.confirmation {
    display: none;
    text-align: center;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    border: 2px solid #D4AF37;
}

.checkmark-circle {
    width: 100px;
    height: 100px;
    position: relative;
    display: inline-block;
    margin: 20px auto;
}

.checkmark-circle-background {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #D4AF37;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0);
    animation: circle-fill 0.4s ease-in-out forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    stroke: white;
    stroke-width: 5;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    position: absolute;
    top: 30px;
    left: 30px;
    width: 40px;
    height: 40px;
    z-index: 10;
}

@keyframes circle-fill {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.confirmation h2 {
    color: #000;
    margin-top: 20px;
    font-weight: 700;
}

.confirmation p {
    color: #555;
    margin-bottom: 25px;
}

.back-btn {
    background-color: #000;
    width: auto;
    display: inline-block;
    margin-top: 10px;
}
