/* Custom styles that extend Tailwind */
.custom-card {
    transition: transform 0.2s ease-in-out;
}

.custom-card:hover {
    transform: translateY(-5px);
}

/* Floating call button styles */
.call-button {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(199, 170, 80, 0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.call-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(199, 170, 80, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(199, 170, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(199, 170, 80, 0);
    }
}

.fixed.bottom-\[100px\].right-\[10px\] a div svg {
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

/* Fixed header styles */
header {
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Logo styles */
header .text-xl {
    font-weight: 700;
}

/* Navigation link effects */
header nav a {
    position: relative;
}

header nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #d97706;
    left: 0;
    bottom: -4px;
    transition: width 0.3s ease;
}

header nav a:hover::after {
    width: 100%;
}

/* Mobile menu animation */
.mobile-menu {
    top: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Mobile menu styles */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

#mobile-menu > div {
    transition: transform 0.3s ease-in-out;
}

#mobile-menu nav li a {
    transition: background-color 0.3s ease;
}

#mobile-menu nav li a:hover {
    background-color: #3cac8b;
}

#mobile-menu nav li a svg {
    transition: transform 0.3s ease;
}

#mobile-menu nav li a:hover svg {
    transform: translateX(5px);
}

#menu-icon, #close-icon {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

#menu-icon:hover, #close-icon:hover {
    opacity: 0.7;
}

/* Gold theme colors */
.gold-bg {
    background-color: #d97706;
}

/* Banner section gradient overlay */
.bg-gradient-to-r {
    position: relative;
}

.bg-gradient-to-r::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/gold-pattern.jpg');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.bg-gradient-to-r > * {
    position: relative;
    z-index: 1;
}

/* Price tables styling */
table {
    width: 100%;
    border-collapse: collapse;
}

th {
    font-weight: bold;
    text-align: left;
}

td, th {
    padding: 0.5rem 0;
}

/* Features section number styling */
.bg-yellow-500.rounded-full {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    font-weight: bold;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

/* Product cards */
.custom-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #f59e0b;
}

/* FAQ section styling */
.mb-4.border-b h3 {
    cursor: pointer;
    position: relative;
    padding-left: 2rem;
}

.mb-4.border-b h3::before {
    content: 'Q:';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #d97706;
}

/* Form elements styling */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

/* Footer styling */
footer a:hover {
    color: #fbbf24;
}

/* Button styling */
.bg-yellow-500, .bg-red-600 {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bg-yellow-500::after, .bg-red-600::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.bg-yellow-500:hover::after, .bg-red-600:hover::after {
    opacity: 1;
}

/* SVG Icons */
.phone-icon {
    display: inline-block;
    width: 55px;
    height: 55px;
    background-image: url('../images/phone-icon.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.diamond-icon {
    display: inline-block;
    width: 81px;
    height: 62px;
    background-image: url('../images/diamond-icon.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.brand-icon {
    display: inline-block;
    width: 81px;
    height: 62px;
    background-image: url('../images/brand-icon.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.gold-chart-link a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.input-error-box {
    position: relative;
    margin-top: 20px;
/*    margin-bottom: 20px;*/
    margin-left: 250px;
    display: inline-block;
}
.input-error-box .error-arrow {
    position: absolute;
    top: -16px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 16px solid #F47B73;
}
.input-error-box .error-message {
    background: #F47B73;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 4px;
    display: inline-block;
}
@media (max-width: 768px) {
    .input-error-box {
/*        margin-left: 120px;*/
        margin-left: 0;
    }
    .input-error-box .error-message {
        font-size: 16px;
        padding: 8px 12px;
    }
    .input-error-box .error-arrow {
        left: 10px;
        top: -10px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #F47B73;
    }
}