.contact-card-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.contact-card-second {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

html.light-mode .contact-card-premium, html.light-mode .contact-card-second {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af5d, transparent);
    opacity: 0;
    transition: 0.4s;
}

.contact-card-premium:hover::before {
    opacity: 1;
}

.icon-box-premium {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 93, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 25px; */
    color: #d4af5d;
    font-size: 28px;
    transition: 0.3s;
}

.premium-input-group {
    margin-bottom: 25px;
}

.premium-input-group label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-size: 14px;
    padding-right: 5px;
    transition: color 0.3s;
}

html.light-mode .premium-input-group label {
    color: rgba(0, 0, 0, 0.6);
}

.premium-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    color: #fff;
    font-size: 15px;
    transition: 0.3s;
}

html.light-mode .premium-input {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #000;
}

.premium-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.07);
    border-color: #d4af5d;
    box-shadow: 0 0 15px rgba(212, 175, 93, 0.15);
}

html.light-mode .premium-input:focus {
    background: rgba(0, 0, 0, 0.01);
    box-shadow: 0 0 15px rgba(212, 175, 93, 0.1);
}

.premium-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

html.light-mode .premium-input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.btn-premium-submit {
    background: linear-gradient(135deg, #d4af5d, #b8944a);
    color: #000;
    font-weight: 700;
    border: none;
    padding: 16px 40px;
    border-radius: 14px;
    font-size: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(212, 175, 93, 0.2);
}

.btn-premium-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(212, 175, 93, 0.3);
    filter: brightness(1.1);
}

.map-container-premium {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    height: 450px;
}

html.light-mode .map-container-premium {
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.glow-dot {
    width: 10px;
    height: 10px;
    background: #d4af5d;
    border-radius: 50%;
    display: inline-block;
    margin-left: 10px;
    box-shadow: 0 0 10px #d4af5d;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0px #d4af5d;
        opacity: 0.6;
    }

    50% {
        box-shadow: 0 0 15px #d4af5d;
        opacity: 1;
    }

    100% {
        box-shadow: 0 0 0px #d4af5d;
        opacity: 0.6;
    }
}

.floating-crane {
    position: absolute;
    bottom: -50px;
    left: -30px;
    opacity: 0.05;
    pointer-events: none;
    transform: scale(1.5);
}

html.light-mode .floating-crane {
    opacity: 0.1;
}

.white {
    color: white;
}

html.light-mode main .address {
    color: white !important;
}


html.light-mode main .text-white:not(.yellow),
html.light-mode main .toggle-color-class {
    color: #000 !important;
}

html.light-mode main .text-white-50 {
    color: rgba(0, 0, 0, 0.6) !important;
}

html.light-mode main {
    background-color: #f1f1f1 !important;
}

html.light-mode main .social-pill {
    color: rgba(0, 0, 0, 0.7) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

html.light-mode main .social-pill:hover {
    color: #000 !important;
    background-color: #d4af5d !important;
    border-color: #d4af5d !important;
}

html.light-mode .breadcrumb-item::before {
    color: rgba(0, 0, 0, 0.4) !important;
}

html.light-mode .bg-green.text-white,


html.light-mode main .address {
    color: white !important;
}

.map-container-premium iframe {
    width: 100%;
    height: 100%;
    border: none;
}