/* Custom Styles for Radyoistek Landing Page */

.map-js-height {
    height: 450px !important;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
}

.map-js-height iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

.contact-info-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    color: var(--bs-primary);
}

.contact-map-container {
    border-radius: 20px;
    overflow: hidden;
}

/* Navbar Profile Icon - restored original style */
.profile-icon-wrapper {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    color: #2b323f;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-icon-wrapper i,
.profile-icon-wrapper svg {
    font-size: 14px;
}

.profile-nav .nav-link:hover .profile-icon-wrapper {
    background-color: #7366ff;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(115, 102, 255, 0.3);
}

.profile-nav .nav-link {
    padding: 0 10px !important;
    transition: all 0.3s ease;
}

.profile-media .flex-grow-1 span {
    font-weight: 500;
    color: #2b323f;
}

/* Icon Primary - missing restoration */
.icon-primary {
    color: #7366ff !important;
}

/* Plan Card - restored from SCSS sources */
.plan-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(82, 77, 141, 0.05);
    height: 100%;
}

/* .plan-card:hover .plan-price h3,
.plan-card:hover .plan-price h3 span {
    color: #fff !important;
} */

.plan-card:hover .btn-premium-grad {
    background: #51bb25 !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(81, 187, 37, 0.3);
}

.plan-icon-wrapper {
    width: 65px;
    height: 65px;
    background: linear-gradient(159.12deg, #ECEEF4 15.46%, #FFFFFF 65.03%);
    border-radius: 50%;
    margin: 0 auto 20px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(159.08deg, #F9F9F9 12%, #FFFFFF 86.17%);
    box-shadow: 0px 4px 10px rgba(83, 81, 114, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
}

.plan-card p {
    color: #777;
    margin-bottom: 20px;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.plan-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
}

.plan-card ul li i,
.plan-card ul li svg {
    color: #51bb25;
}

.plan-price {
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.icon-info {
    color: #0dcaf0 !important;
}

.icon-primary {
    color: #7366ff !important;
}

.icon-secondary {
    color: #f73164 !important;
}

.icon-success {
    color: #51bb25 !important;
}

.icon-warning {
    color: #f8d62b !important;
}

.service-icon-box i {
    font-size: 40px;
    transition: all 0.3s ease;
}

.service-box:hover .service-icon-box i {
    transform: scale(1.1);
}

.btn-premium-grad {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #7366ff 0%, #a927f9 100%);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(115, 102, 255, 0.3);
}

.btn-premium-grad:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(115, 102, 255, 0.4);
}

/* Index Page Mobile Spacing Fix */
@media (max-width: 991.98px) {
    .home-style-2 {
        padding-top: 100px !important;
    }
}

/* Make text background shape completely surround the text */
.home-style-2 .home-content h1 b {
    background-size: 100% 100% !important;
    padding: 0 15px !important;
    background-position: center !important;
}