/* Custom Components (Converted from Tailwind @apply for external usage) */
   @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@700;800;900&display=swap');

.btn-primary {
    background: linear-gradient(to right, #b8860b, #d4af37, #b8860b);
    color: #ffffff;
    font-weight: 900;
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.25rem;
    cursor: pointer;
    display: inline-block;
    border: none;
}

@media (min-width: 768px) {
    .btn-primary {
        font-size: 1.5rem;
    }
}

.btn-primary:hover {
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.4);
    transform: translateY(-2px);
}

.glass {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.875rem;
    color: #b8860b;
    text-transform: uppercase;
    line-height: 1.25;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 900;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
        margin-bottom: 5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.input-field {
    width: 100%;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    color: #1a1a1b;
    font-size: 1.125rem;
    transition: all 0.3s;
    outline: none;
}

.input-field::placeholder {
    color: #9ca3af;
}

.input-field:focus {
    border-color: #b8860b;
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1);
}

/* Animations & Custom Styles */

.testimonial-track {
    display: flex;
    width: fit-content;
    animation: slide 50s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-track:hover {
    animation-play-state: paused;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #f3f4f6;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(184, 134, 11, 0.3);
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(184, 134, 11, 0.5);
}

/* Message box styles */
.message-success {
    background-color: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    text-align: center;
}

.message-error {
    background-color: #fee2e2;
    border: 1px solid #f87171;
    color: #b91c1c;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    text-align: center;
}