

 /* LUXURY GOLD CONTAINER - STRICT MAX-WIDTH 1100px */
.gold-container {
    max-width: 1100px;
    width: 100%;
    background: rgba(10, 8, 20, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.25), 0 0 0 4px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.4);
    
    /* Add these lines to center */
    margin-left: auto;
    margin-right: auto;
}

/* Optional: Add a wrapper to center everything on the page */
body .gold-container {
    margin-left: auto;
    margin-right: auto;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .gold-container {
        margin-left: 16px;
        margin-right: 16px;
        width: calc(100% - 32px);
        max-width: calc(1100px - 32px);
    }
}

        /* TOP IMAGE - NO ROUNDED CORNERS, FULL WIDTH, SQUARE EDGES */
        .top-image-wrapper {
            width: 100%;
            line-height: 0;
            margin: 0;
            padding: 0;
        }
        .top-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 0 !important;
            margin: 0;
            padding: 0;
        }

        /* Hero Gold Header */
        .gold-header {
            background: linear-gradient(135deg, #1f1a2e 0%, #0e0b1a 100%);
            padding: 28px 30px 20px;
            text-align: center;
            position: relative;
            border-bottom: 2px solid #D4AF37;
            box-shadow: inset 0 1px 0 rgba(255,215,0,0.2), 0 4px 15px rgba(0,0,0,0.3);
        }
        .gold-header h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #F5E7A3, #D4AF37, #B8860B);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
            margin-bottom: 8px;
        }
        .gold-header p {
            color: #e9d6a3;
            font-size: 0.95rem;
            font-weight: 400;
            letter-spacing: 1px;
            font-family: 'Montserrat', sans-serif;
        }
        .header-icon-lux {
            position: absolute;
            right: 30px;
            top: 28px;
            font-size: 2rem;
            color: #D4AF37;
            filter: drop-shadow(0 0 6px rgba(212,175,55,0.6));
        }

        /* Marquee Gold Accent */
        .gold-marquee {
            background: rgba(0,0,0,0.65);
            backdrop-filter: blur(8px);
            padding: 10px 20px;
            border-top: 1px solid rgba(212, 175, 55, 0.4);
            border-bottom: 1px solid rgba(212, 175, 55, 0.4);
            overflow: hidden;
            white-space: nowrap;
        }
        .gold-marquee-content {
            display: inline-block;
            animation: scrollGold 32s linear infinite;
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            color: #FFE4A3;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }
        @keyframes scrollGold {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-48%); }
        }

        /* navigation gilded */
        .gold-nav {
            background: rgba(8, 6, 18, 0.8);
            padding: 10px 16px;
            text-align: center;
            border-bottom: 1px solid rgba(212,175,55,0.3);
            flex-wrap: wrap;
            display: flex;
            justify-content: center;
            gap: 6px;
        }
        .gold-nav a {
            color: #E5D5A8;
            text-decoration: none;
            margin: 0 10px;
            font-size: 0.75rem;
            font-weight: 500;
            transition: all 0.2s;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 0.5px;
            display: inline-block;
        }
        .gold-nav a:hover {
            color: #D4AF37;
            text-shadow: 0 0 5px #d4af37;
        }

        /* form main area */
        .form-luxury {
            padding: 28px 35px 40px;
        }
        .gold-section {
            background: linear-gradient(105deg, rgba(20, 16, 36, 0.7) 0%, rgba(15, 12, 28, 0.8) 100%);
            backdrop-filter: blur(4px);
            border-radius: 28px;
            margin-bottom: 28px;
            padding: 20px 28px;
            border: 1px solid rgba(212, 175, 55, 0.35);
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
            transition: all 0.25s;
        }
        .section-title-gold {
            font-size: 1.6rem;
            font-weight: 600;
            font-family: 'Cormorant Garamond', serif;
            color: #F5CF7E;
            margin-bottom: 22px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-left: 4px solid #D4AF37;
            padding-left: 16px;
            letter-spacing: 1px;
        }
        .section-title-gold i {
            color: #E4B440;
            font-size: 1.5rem;
        }

        .form-group-gold {
            margin-bottom: 22px;
        }
        .form-group-gold label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            color: #F7E5C2;
            margin-bottom: 6px;
            font-size: 0.85rem;
            letter-spacing: 0.4px;
        }
        .form-group-gold label i {
            color: #D4AF37;
            width: 24px;
        }
        .gold-input, .gold-select {
            width: 100%;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(212, 175, 55, 0.6);
            border-radius: 20px;
            padding: 10px 18px;
            font-size: 0.9rem;
            color: #FFF6E5;
            font-family: 'Montserrat', sans-serif;
            transition: all 0.2s;
        }
        .gold-input:focus, .gold-select:focus {
            outline: none;
            border-color: #F5C542;
            box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
            background: rgba(10, 8, 22, 0.8);
        }
        .gold-select {
            appearance: none;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23D4AF37" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
            background-repeat: no-repeat;
            background-position: right 18px center;
            background-size: 14px;
        }
        .radio-group-gold {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            margin-top: 10px;
        }
        .radio-option-gold {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #EADAAE;
            font-weight: 400;
            cursor: pointer;
            font-size: 0.85rem;
        }
        .radio-option-gold input {
            width: 16px;
            height: 16px;
            accent-color: #D4AF37;
        }
        .field-desc-gold {
            font-size: 0.7rem;
            color: #C7B27B;
            margin-bottom: 4px;
            letter-spacing: 0.3px;
        }
        .required-star::after {
            content: " *";
            color: #F7B32B;
            font-weight: bold;
        }
        .submit-gold {
            background: linear-gradient(105deg, #B47C2E, #D4AF37, #C98F2E);
            border: none;
            padding: 12px 32px;
            font-size: 1.1rem;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            border-radius: 60px;
            color: #1F1A2A;
            width: 280px;
            margin: 20px auto 10px;
            display: block;
            cursor: pointer;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4), 0 0 0 1px #F5D742 inset;
            transition: all 0.3s;
            letter-spacing: 1.5px;
        }
        .submit-gold:hover {
            transform: translateY(-2px);
            background: linear-gradient(105deg, #D4AF37, #F5CF6A, #E4B340);
            box-shadow: 0 12px 24px rgba(212,175,55,0.4);
            color: #0A0814;
        }
        .gold-note {
            background: rgba(0, 0, 0, 0.55);
            border-left: 6px solid #D4AF37;
            padding: 14px 20px;
            border-radius: 24px;
            margin-top: 22px;
            font-size: 0.75rem;
            color: #DBCA9F;
            text-align: center;
        }
        .gold-badge {
            text-align: center;
            font-size: 0.65rem;
            margin-top: 18px;
            color: #B49450;
        }

        @media (max-width: 780px) {
            .form-luxury {
                padding: 20px;
            }
            .gold-section {
                padding: 16px 20px;
            }
            .section-title-gold {
                font-size: 1.4rem;
            }
            .gold-nav a {
                margin: 0 6px;
                font-size: 0.68rem;
            }
            .submit-gold {
                width: 100%;
                max-width: 260px;
            }
            .header-icon-lux {
                right: 20px;
                top: 20px;
                font-size: 1.6rem;
            }
            .gold-header h1 {
                font-size: 1.6rem;
            }
        }

        /* Remove any border radius from container top */
        .gold-container {
            border-radius: 48px 48px 48px 48px;
        }
        /* Ensure image has zero rounding at top */
        .gold-container > :first-child {
            border-top-left-radius: 0;
            border-top-right-radius: 0;
        }