/* Hero CTA Gold Button */
.hero-cta-btn {
    background: linear-gradient(135deg, #c9a84c 0%, #f0d060 40%, #b8942a 70%, #d4af37 100%);
    color: #1a1200;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 16px rgba(212, 175, 55, 0.35);
    border: 1px solid #f0d060;
    transition: all 0.3s ease;
}

.hero-cta-btn:hover {
    background: linear-gradient(135deg, #d4b85a 0%, #f5da70 40%, #c4a030 70%, #dfc040 100%);
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.55);
    transform: translateY(-1px);
}



/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Improved Focus States */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #d97706;
    outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #d97706;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b45309;
}

/* Loading Animation for Form Button */
.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Image Loading */
img {
    max-width: 100%;
    height: auto;
}

/* Print Styles */
@media print {
    nav,
    footer,
    #mobile-menu,
    button {
        display: none !important;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
