body {
    background-color: #fafafa;
    color: #1f2937;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fafafa; 
}
::-webkit-scrollbar-thumb {
    background: #d1d5db; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #b89f5e; 
}

.text-gold-gradient {
    background: linear-gradient(to right, #b89f5e, #e6d5a7, #b89f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.input-underline {
    border: none;
    border-bottom: 2px solid #f3f4f6; /* Slightly thicker, softer color */
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 0;
}

.input-underline:focus {
    outline: none;
    border-bottom-color: #b89f5e;
    padding-left: 0.5rem; /* Subtle focus movement */
}

/* Floating Label Placeholder Effect could be added but let's stick to clean look */

/* Image Overlay Gradient */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(255,255,255,0.6) 0%, rgba(250,250,250,1) 90%);
}

.benefit-glow {
    color: #b89f5e;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(184, 159, 94, 0.4);
    animation: benefit-pulse 3s infinite ease-in-out;
}

@keyframes benefit-pulse {
    0%, 100% { text-shadow: 0 0 8px rgba(184, 159, 94, 0.3); opacity: 0.9; }
    50% { text-shadow: 0 0 15px rgba(184, 159, 94, 0.7); opacity: 1; }
}

/* Shiny Text Effect */
.shiny-text {
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 60%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
    animation: shine-animation 5s linear infinite;
}

@keyframes shine-animation {
    0% { background-position: 100%; }
    100% { background-position: -100%; }
}

/* Specific adjustment for Gold Gradient with Shine */
.text-gold-gradient.shiny-text {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(
        120deg,
        #b89f5e 30%,
        #e6d5a7 45%,
        rgba(255, 255, 255, 0.8) 50%,
        #e6d5a7 55%,
        #b89f5e 70%
    );
    background-size: 200% 100%;
}

/* Gold Card Highlight */
.gold-card-highlight {
    transition: all 0.4s ease;
    border: 1px solid rgba(184, 159, 94, 0.2);
}

@media (min-width: 768px) {
    .gold-card-highlight:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px -12px rgba(184, 159, 94, 0.2);
        border-color: rgba(184, 159, 94, 0.6);
    }
}

/* Button Animation - Subtle */
.gold-btn-anim {
    transition: all 0.3s ease;
}

.gold-btn-anim:hover {
    background-color: #111;
    box-shadow: 0 10px 15px -3px rgba(184, 159, 94, 0.3);
}

/* Universal Offer Card Animation (matches Diety page) */
.offer-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* --- Custom Select Styles --- */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
    margin-bottom: 0.5rem;
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #111827; /* Darker, more premium */
    border-bottom: 2px solid #f3f4f6;
    background: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-select-trigger:hover {
    border-bottom-color: #d1d5db;
}

.custom-select.open .custom-select-trigger {
    border-bottom-color: #b89f5e;
    padding-left: 0.5rem;
}

/* The Arrow */
.custom-select-trigger::after {
    content: '';
    width: 0.6em;
    height: 0.6em;
    border-right: 2px solid #b89f5e;
    border-bottom: 2px solid #b89f5e;
    transform: rotate(45deg);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 0.5rem;
    margin-top: -6px;
}

.custom-select.open .custom-select-trigger::after {
    transform: rotate(225deg);
    margin-top: 6px;
}

/* Dropdown Menu */
.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #f3f4f6;
    border-top: 0;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 60;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.1), 0 10px 15px -10px rgba(0, 0, 0, 0.1);
    max-height: 280px;
    overflow-y: auto;
    margin-top: 0px;
    border-radius: 0 0 12px 12px;
    transform: translateY(-15px) scale(0.98);
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0) scale(1);
}

/* Dropdown Items */
.custom-option {
    position: relative;
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    font-family: 'Lato', sans-serif;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f9fafb;
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover, 
.custom-option.selected {
    background-color: #fffaf0; /* Warm highlight */
    color: #b89f5e;
    font-weight: 700;
    padding-left: 2rem;
}

/* Scrollbar for the dropdown */
.custom-options::-webkit-scrollbar {
    width: 6px;
}
.custom-options::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 3px;
}
.custom-options::-webkit-scrollbar-thumb:hover {
    background: #b89f5e;
}

/* Form Section Styling */
#contact .glass-panel {
    border-radius: 2rem;
    border: 1px solid rgba(184, 159, 94, 0.1);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.1);
}

/* Button Refinement */
#contact button[type="submit"] {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#contact button[type="submit"]:hover {
    letter-spacing: 0.3em;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(184, 159, 94, 0.4);
}

/* Checkbox Styling */
input[type="checkbox"] {
    accent-color: #b89f5e;
}

input[type="checkbox"]:focus {
    --tw-ring-color: #b89f5e;
}

/* --- Brushed Platinum Button --- */
.btn-platinum-brushed {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 50%, #adb5bd 100%);
    color: #212529;
    border: 1px solid #ced4da;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.bg-platinum-spotlight {
    background: radial-gradient(circle at 50% 35%, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
}

.btn-platinum-brushed::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: 0.5s;
    z-index: -1;
}

.btn-platinum-brushed:hover {
    background: #111;
    color: #f8f9fa;
    border-color: #adb5bd;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(173, 181, 189, 0.4);
}

.btn-platinum-brushed:hover::before {
    left: 100%;
}

/* Shake Animation for Errors (Global) */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

.animate-shake {
  animation: shake 0.5s ease-in-out;
}

.error-msg {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
